-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "planpush",
"version": "0.0.1",
"license": "AGPL-3.0-only",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:migrations:pg": "vitest run --config vitest.migrations.config.js"
},
"dependencies": {
"better-sqlite3": "^11.9.1",
"cheerio": "^1.0.0",
"connect-session-knex": "^5.0.0",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"express-rate-limit": "^8.3.1",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"knex": "^3.2.7",
"openid-client": "^6.8.4",
"pg": "^8.20.0",
"scimmy": "^1.3.5",
"scimmy-routers": "^1.3.2"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@testcontainers/postgresql": "^12.0.1",
"@vitest/coverage-v8": "^3.2.4",
"supertest": "^7.2.2",
"vitest": "^3.2.4"
}
}