-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "multi-snake",
"version": "0.0.1",
"description": "A multiplayer Snake created by ECV Digitale Dev Master students.",
"main": "index.html",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"browserify": "^13.1.1",
"event-emitter": "^0.3.4",
"event-emitter-es6": "^1.1.5",
"express": "^4.14.0",
"jquery": "^3.1.1",
"nodemon": "^1.11.0",
"npm-run-all": "^3.1.2",
"rollupify": "^0.3.5",
"socket.io": "^1.5.1"
},
"devDependencies": {
"watchify": "^3.7.0"
},
"scripts": {
"bundle": "browserify client/js/main.js -o client/js/bundle.js -t rollupify -d",
"watch": "watchify client/js/main.js -o client/js/bundle.js -t rollupify -d -v",
"eslint": "eslint ./client/js/**/*.js",
"serve": "nodemon --exec npm run babel-node -- server/index.js",
"start": "npm-run-all bundle serve",
"babel-node": "babel-node --presets=es2015"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavidBruant/MultiSnake.git"
},
"author": "ECVD Dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavidBruant/MultiSnake/issues"
},
"homepage": "https://github.com/DavidBruant/MultiSnake#readme"
}