-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 951 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 951 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
{
"version": "1.0.0",
"type": "module",
"main": "server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --exec tsx src/server.ts"
},
"license": "MIT",
"dependencies": {
"@prisma/client": "6",
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"jsonwebtoken": "^9.0.3",
"multer": "^2.1.1",
"nodemailer": "^8.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/cli": "^4.3.0",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^6.0.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.1.0",
"@types/node": "^25.9.1",
"@types/nodemailer": "^8.0.0",
"nodemon": "^3.1.14",
"prisma": "6",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
}
}