-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
29 lines (29 loc) · 876 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
{
"name": "nengi-babylon-3d-shooter",
"version": "1.0.0",
"description": "nengi 3d example game in babylon.js with client-side prediction and lag compensation",
"scripts": {
"start": "npx npm-run-all --parallel server client",
"server": "npx nodemon ./server/index.js --ignore public",
"client": "npx webpack-dev-server --config webpack.dev.js",
"build": "npx webpack --config webpack.prod.js"
},
"author": "timetocode // Alex",
"license": "Apache 2.0",
"dependencies": {
"babylonjs": "^4.0.3",
"babylonjs-loaders": "^4.0.3",
"esm": "^3.2.25",
"nengi": "^1.18.0",
"xhr2": "^0.2.0"
},
"devDependencies": {
"nodemon": "1.19.3",
"npm-run-all": "4.1.5",
"terser-webpack-plugin": "^2.3.4",
"webpack": "4.41.1",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.8.2",
"webpack-merge": "4.2.2"
}
}