-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1001 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
{
"name": "catch-the-block",
"version": "0.1.0",
"scripts": {
"start": "webpack --config client/webpack.config.js && node --experimental-modules app.js",
"start:debug": "webpack --config client/webpack.config.dev.js && DEBUG=socket.io:socket,socket.io-parser* node --experimental-modules app.js",
"build": "webpack --config client/webpack.config.js"
},
"dependencies": {
"ent": "^2.2.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"redux": "^4.0.4",
"socket.io": "^2.3.0",
"three": "^0.108.0"
},
"author": "rdbmax <rdbmax@gmail.com>",
"description": "Multiplayer 3D game: you need to catch the block before other players",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"type": "module",
"engines": {
"node": ">=12.10.0"
}
}