-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 793 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 793 Bytes
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
{
"name": "nengi-2d-demo",
"version": "1.0.0",
"description": "nengi 2d example game with client-side prediction and lag compensation",
"scripts": {
"start": "npx concurrently \"npx webpack-dev-server --config webpack.dev.js\" \"npx nodemon --inspect ./server/index.js --ignore public --ignore bot/\"",
"build": "npx webpack --config webpack.prod.js"
},
"author": "timetocode // Alex",
"license": "Apache 2.0",
"dependencies": {
"esm": "^3.2.25",
"nengi": "^1.9.0",
"pixi.js": "^5.1.5",
"sat": "^0.7.1"
},
"devDependencies": {
"concurrently": "^4.1.2",
"nodemon": "^1.19.3",
"terser-webpack-plugin": "^1.4.1",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2"
}
}