-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 1.02 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
{
"name": "js",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"prod": "node StartServer.mjs configurations/production.json configurations/local-overrides.json",
"test": "node StartServer.mjs configurations/test.json configurations/local-overrides.json",
"ci": "node StartServer.mjs configurations/ci.json configurations/local-overrides.json",
"dev": "node StartServer.mjs configurations/dev.json configurations/local-overrides.json",
"mock": "node StartServer.mjs configurations/mock.json configurations/local-overrides.json",
"unit": "node test/regression.mjs > test/results/latest.json"
},
"author": "Guthrie Price",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^11.5.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"hash-sum": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"lodash": "^4.17.21",
"meow": "^12.1.1",
"newrelic": "^12.7.0",
"pg": "^8.11.0",
"pino-http": "^8.2.1",
"uuid": "^9.0.0"
}
}