-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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": "multiplayer-snake",
"version": "0.0.1",
"description": "A simple multiplayer snake in JS",
"main": "server/index.js",
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"babel-node": "babel-node --presets=es2015",
"start": "nodemon --exec npm run babel-node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bramvanosta/Multiplayer-Snake.git"
},
"author": "Bram van Osta",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bramvanosta/Multiplayer-Snake/issues"
},
"homepage": "https://github.com/Bramvanosta/Multiplayer-Snake#readme",
"devDependencies": {
"eslint-loader": "^1.6.1",
"webpack-dashboard": "^0.2.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-preset-latest": "^6.16.0",
"eslint": "^3.12.2",
"event-emitter": "^0.3.4",
"event-emitter-es6": "^1.1.5",
"express": "^4.14.0",
"nodemon": "^1.11.0",
"npm-run-all": "^3.1.2",
"socket.io": "^1.7.2",
"webpack": "^1.14.0"
}
}