-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "facgame",
"version": "1.0.0",
"description": "a lethal game!",
"main": "index.js",
"scripts": {
"start": "npm run build; node server/index.js",
"build": "browserify src/entry.js -o public/js/bundle.js -t [ babelify --presets [ es2015 ] ]",
"watch-js": "watchify src/entry.js -o public/js/bundle.js -t [ babelify --presets [ es2015 ] ]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC-11/FACgame.git"
},
"author": "Yahia_Zaky <zaky20@hotmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC-11/FACgame/issues"
},
"homepage": "https://github.com/FAC-11/FACgame#readme",
"dependencies": {
"body-parser": "^1.18.1",
"cannon": "github:schteppe/cannon.js",
"express": "^4.15.4",
"http-server": "^0.10.0",
"install": "^0.10.1",
"npm": "^5.4.0",
"raf-js": "^1.0.1",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"three": "^0.87.1",
"three-mtl-loader": "^1.0.1",
"three-obj-loader": "^1.1.2",
"three-pointerlock": "0.0.2",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"watchify": "^3.9.0",
"babel-preset-es2015": "^6.24.1"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"nodemon": "^1.11.0"
}
}