-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.31 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "supergame",
"version": "1.0.0",
"description": "the super game",
"main": "server/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "izyl",
"license": "ISC",
"devDependencies": {
"browserify": "^11.2.0",
"browserify-css": "^0.7.1",
"browserify-shim": "^3.8.10",
"gulp": "^3.9.0",
"gulp-clean": "^0.3.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.6",
"lodash.assign": "^3.2.0",
"socket.io": "^1.3.7",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0"
},
"browser": {
"jQuery": "./node_modules/jquery/dist/jquery.js",
"THREE": "./node_modules/three.js/build/three.js",
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jQuery": "jQuery",
"bootstrap": {
"depends": "jQuery"
}
},
"dependencies": {
"angular": "^1.4.7",
"angular-animate": "^1.4.7",
"angular-route": "^1.4.7",
"bootstrap": "^3.3.5",
"express": "^4.13.3",
"jquery": "^2.1.4",
"lodash": "^3.10.1",
"path": "^0.12.7",
"socket.io-client": "^1.3.7",
"stats.js": "0.0.14-master",
"three.js": "^0.73.0",
"toastr": "^2.1.2"
}
}