-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 905 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": "backshot-tactics",
"version": "0.1.0",
"description": "js13kgames game",
"license": "MIT",
"main": "index.js",
"scripts": {
"prestart": "node test-game.js && node build.js",
"start": "node index.js",
"dev": "nodemon --inspect index.dev.js",
"test-game": "node test-game.js",
"test": "mocha test",
"postinstall": "node test-game.js && node build.js"
},
"keywords": [
"js13kgames",
"server"
],
"engines": {
"node": "8.*"
},
"dependencies": {
"archiver": "^3.0.0",
"body-parser": "^1.19.0",
"csso": "^3.5.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"mysql2": "^1.6.5",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.9.4",
"socket.io": "^2.2.0",
"sqlite3": "^4.0.9",
"terser": "^4.0.2"
},
"devDependencies": {
"mocha": "^6.1.4",
"nodemon": "^1.19.1"
}
}