-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 741 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 741 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
{
"name": "move37-voting",
"version": "1.0.0",
"private": true,
"main": "src/index.js",
"scripts": {
"dev": "nodemon --watch src --exec \"node src/index.js\"",
"start": "node src/index.js",
"prisma:migrate": "prisma migrate dev --name init",
"prisma:seed": "node prisma/seed.js",
"test": "jest --runInBand"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"socket.io": "^4.7.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^2.0.22",
"prisma": "^5.0.0",
"supertest": "^6.3.4"
}
}