forked from ecvdbdx/MultiSnake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "multi-snake",
"version": "0.0.1",
"description": "A multiplayer Snake created by ECV Digitale Dev Master students.",
"main": "index.html",
"dependencies": {
"browserify": "^13.1.1",
"event-emitter": "^0.3.4",
"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/assets/js/main.js -o client/assets/js/bundle.js -t rollupify -d",
"watch": "watchify client/assets/js/main.js -o client/assets/js/bundle.js -t rollupify -d -v",
"eslint": "eslint ./client/assets/js/**/*.js",
"serve": "nodemon server/index.js",
"start": "npm-run-all bundle serve"
},
"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"
}