-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
39
{
"name": "boltbox",
"version": "1.0.1",
"description": "A modular party game engine inspired by Jackbox",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"begin": "npm run prepClient && npm run prepHost && node index.js",
"prepClient": "browserify Client/client.js -o Client/bundle.js && lessc Client/styles.less Client/styles.css",
"prepHost": "browserify Host/host.js -o Host/bundle.js && lessc Host/styles.less Host/styles.css",
"start": "nodemon --exec npm run begin --ext js,html,less --ignore Client/bundle.js --ignore Host/bundle.js"
},
"license": "MIT",
"dependencies": {
"animejs": "^3.2.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"ip": "^1.1.8",
"jquery": "^3.7.0",
"nanoid": "^4.0.2",
"path": "^0.12.7",
"ws": "^8.13.0",
"buzzbolt": "file:../BuzzBolt"
},
"type": "module",
"devDependencies": {
"less": "^4.1.3",
"tinyify": "^4.0.0"
},
"git repository": "https://github.com/BurntIce16/BoltBox",
"keywords": [
"game",
"party",
"jackbox",
"boltbox"
],
"author": "BurntIce16"
}