-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) 路 811 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) 路 811 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
{
"scripts": {
"dev": "ts-node src/server.ts",
"build": "tsc",
"start": "node dist/server.jd"
},
"dependencies": {
"@prisma/client": "^7.6.0",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.5.0",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.17",
"prisma": "^7.6.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}