-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@fastify/basic-auth": "^6.2.0",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.1.0",
"@fastify/helmet": "^13.0.2",
"@fastify/multipart": "^9.3.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^8.3.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.4",
"@prisma/adapter-pg": "^7.1.0",
"@prisma/client": "^7.1.0",
"@supabase/supabase-js": "^2.48.1",
"dotenv": "^16.4.7",
"es-hangul": "^2.3.8",
"fastify": "^5.2.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.3",
"sharp": "^0.34.5",
"winston": "^3.18.3",
"zod": "^3.24.1",
"zod-prisma-types": "^3.3.10"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^24.10.1",
"@types/pg": "^8.16.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"nodemon": "^3.1.11",
"prisma": "^7.0.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"type": "module",
"scripts": {
"dev": "tsx watch app.ts",
"start": "node dist/app.js",
"build": "tsc && tsc-alias",
"build:prod": "npx prisma generate && tsc && tsc-alias",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"dev:js": "nodemon app.js",
"start:js": "node app.js",
"db:migrate": "npx prisma migrate deploy",
"db:reset:safe": "node scripts/safe-reset.js",
"db:backup": "echo 'Please create manual backup before any migration'",
"format:prisma": "prisma format"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}