-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "blocks",
"description": "webxr multiplayer voxels engine",
"author": "Daniel Esteban Nombela",
"version": "1.0.0",
"license": "MIT",
"private": true,
"pre-commit": {
"run": "lint",
"silent": true
},
"scripts": {
"compile:protocol": "pbjs -t static-module -w es6 -o client/core/protocol.js --no-comments server/messages.proto",
"lint": "eslint --cache --ext .js client server",
"start": "cross-env CLIENT=true PRELOAD=10 SEED=1980 STORAGE=./data nodemon --watch server server/main.js"
},
"dependencies": {
"colorsys": "^1.0.22",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"fastnoisejs": "^1.0.1",
"helmet": "^4.4.1",
"node-fetch": "^2.6.1",
"pngjs": "^6.0.0",
"protobufjs": "^6.10.2",
"uuid": "^8.3.2",
"ws": "^7.4.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7",
"pre-commit": "^1.2.2"
}
}