-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 957 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
35
36
37
{
"name": "rolling-sphere",
"version": "1.0.0",
"description": "Rolling Sphere Brawser Game",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon --inspect index.js",
"lint": "eslint index.js server",
"lint:watch": "esw -w index.js server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheNech/RollingSphere.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheNech/RollingSphere/issues"
},
"homepage": "https://github.com/TheNech/RollingSphere#readme",
"dependencies": {
"bootstrap": "^3.3.7",
"jquery": "^3.2.1",
"log4js": "^2.3.12",
"mongoose": "^4.13.6",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"three": "^0.88.0"
},
"devDependencies": {
"eslint": "^4.13.0",
"eslint-watch": "^3.1.3",
"nodemon": "^1.12.5"
}
}