-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 775 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 775 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/server.js",
"build": "npx prisma generate",
"postinstall": "npx prisma generate",
"start": "node src/server.js",
"db:reset": "node prisma/reset.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@prisma/client": "^6.19.2",
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"node-cron": "^4.2.1",
"socket.io": "^4.8.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"nodemon": "^3.1.14",
"prisma": "^6.19.2"
}
}