-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 908 Bytes
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
{
"name": "rackstack-server",
"version": "1.7.0",
"private": true,
"type": "module",
"scripts": {
"start": "node server/index.js",
"dev": "node --watch server/index.js",
"test": "vitest run",
"test:sqlite": "TEST_BACKEND=sqlite vitest run",
"test:all": "npm run test:sqlite && npm test",
"migrate:pg": "node server/db/migrate.js",
"smoke": "for f in tests/e2e/smoke-v1*.mjs; do node \"$f\" || exit 1; done",
"smoke:pg": "TEST_BACKEND=pg npm run smoke"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-github2": "^0.1.12",
"pg": "^8.22.0"
},
"devDependencies": {
"@testcontainers/postgresql": "^12.0.4",
"supertest": "^7.0.0",
"vitest": "^3.0.0"
}
}