-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@durhack/durhack-server",
"private": true,
"scripts": {
"start": "node dist/main.js",
"prebuild": "pnpm run generate && pnpm run type-check",
"build": "tsup",
"check": "biome check .",
"check:fix": "biome check --write .",
"dev": "tsx src/main.ts",
"dev:watch": "tsx watch src/main.ts",
"generate": "prisma generate && prisma generate --sql",
"test": "vitest run --silent",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@durhack/durhack-common": "workspace:*",
"@keycloak/keycloak-admin-client": "^26.2.5",
"@otterhttp/app": "^3.4.9",
"@otterhttp/cookie-signature": "^3.0.0",
"@otterhttp/errors": "^0.3.0",
"@otterhttp/parsec": "^0.2.1",
"@otterhttp/session": "^0.3.2",
"@prisma/client": "^5.22.0",
"corstisol": "^1.0.0",
"countries-list": "^3.1.1",
"file-type": "^19.6.0",
"form-data": "^4.0.4",
"handlebars": "^4.7.8",
"ics": "^3.8.1",
"libphonenumber-js": "^1.12.24",
"mailgun.js": "^10.4.0",
"module-error": "^1.0.2",
"nanoid": "^5.1.6",
"openid-client": "^5.7.1",
"tsx": "^4.20.6",
"undici": "^6.22.0",
"zod": "^3.25.76",
"zod-config": "^1.3.0"
},
"type": "module",
"devDependencies": {
"@types/node": "^24.9.0",
"glob": "^11.0.3",
"prisma": "^5.22.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
}
}