This repository was archived by the owner on Dec 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.15 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ukhsc-system-backend",
"version": "0.0.1",
"private": true,
"main": "src/index.ts",
"scripts": {
"dev": "NODE_ENV=development tsx watch src/index.ts | pino-pretty",
"start": "NODE_ENV=production node dist/index.js",
"build": "tsup src/index.ts --format esm --dts --clean --sourcemap --minify",
"test": "vitest run",
"test:watch": "vitest",
"migrate": "prisma migrate deploy",
"generate": "prisma generate",
"seed": "prisma db seed",
"lint": "tsc --noEmit && eslint .",
"lint:fix": "eslint . --fix"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.0",
"@cspell/eslint-plugin": "^8.17.1",
"@hono/node-server": "^1.13.7",
"@opentelemetry/api": "^1.9.0",
"@prisma/client": "^6.3.0",
"@prisma/instrumentation": "^6.3.0",
"@sentry/cli": "^2.41.1",
"@sentry/node": "^8.51.0",
"@sentry/profiling-node": "^8.51.0",
"argon2": "^0.41.1",
"axios": "^1.8.2",
"chanfana": "^2.6.3",
"dotenv": "^16.4.7",
"hono": "^4.6.18",
"hono-pino": "^0.7.0",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"npm": "^11.0.0",
"openapi3-ts": "^4.4.0",
"pino": "^9.6.0",
"ua-parser-js": "^2.0.0",
"vitest-mock-extended": "^2.0.2",
"zod": "^3.24.1",
"zod-prisma-types": "^3.2.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest-mock-extended": "4.0.0-beta1",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"prisma": "^6.3.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^3.0.5"
},
"type": "module",
"peerDependencies": {
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
}