forked from Riky5/wormz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 887 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
38
39
40
{
"name": "awesome-game-v2",
"version": "1.0.0",
"description": "Web Wormz game",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "node server",
"build": "esbuild index.js --bundle --outfile=public/bundle.js",
"dev-build": "esbuild index.js --bundle --outfile=public/bundle.js --watch"
},
"keywords": [
"p5.js",
"node"
],
"author": "",
"license": "ISC",
"dependencies": {
"build": "^0.1.4",
"chai": "^4.3.6",
"chai-dom": "^1.11.0",
"cors": "^2.8.5",
"esbuild": "^0.14.21",
"express": "^4.17.2",
"matter-js": "^0.18.0",
"mocha": "^9.2.0",
"p5": "^0.9.0",
"socket.io": "^4.4.1",
"webpack": "^5.68.0"
},
"devDependencies": {
"jsdom": "19.0.0",
"jsdom-global": "3.0.2",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0"
},
"engines": {
"node": "16.x"
}
}