-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 971 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 971 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
33
34
35
36
37
38
39
40
{
"name": "dit-backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.cjs",
"type": "module",
"scripts": {
"start": "node dist/index.cjs",
"dev": "tsx watch src/index.ts",
"build": "tsup",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.8.0",
"dependencies": {
"@prisma/client": "6.10.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"prisma": "^6.10.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/express-serve-static-core": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^24.0.3",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}