forked from rubentd/tanks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 786 Bytes
/
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
{
"name": "tanks",
"version": "1.0.0",
"description": "Tanks tutorial for web sockets",
"main": "app.js",
"scripts": {
"start": "babel src/index.js -o src/server.js && babel-node src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubentd/tanks.git"
},
"keywords": [
"tanks",
"sockets",
"nodejs"
],
"author": "Ruben Torres",
"license": "MIT",
"bugs": {
"url": "https://github.com/rubentd/tanks/issues"
},
"homepage": "https://github.com/rubentd/tanks#readme",
"dependencies": {
"express": "^4.13.3",
"random-js": "^1.0.8",
"socket.io": "^1.3.7"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-root-import": "^5.1.0",
"babel-preset-es2015": "^6.24.1"
}
}