-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 858 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
{
"name": "factorio-keeper-db",
"version": "1.0.0",
"description": "HTTP server backend for Factorio Blueprint Keeper",
"main": "index.js",
"scripts": {
"start": "tsc index.ts && node index.js",
"init-db": "tsc init-db.ts && node init-db.js",
"populate-db": "tsc write-start-data.ts && node write-start-data.js",
"load-image-1": "tsc image-reading.ts && node image-reading.js",
"boot-db": "npm run-script init-db && npm run-script populate-db && npm run-script load-image-1",
"debug": "tsc debugger.ts && node debugger.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "enoumy",
"license": "ISC",
"dependencies": {
"@types/node": "^13.11.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"factorio-blueprint": "^2.3.1",
"sqlite3": "^4.1.1"
}
}