-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 997 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
41
42
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"migrate": "npx prisma migrate dev",
"studio": "npx prisma studio",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@prisma/adapter-pg": "^7.1.0",
"@prisma/client": "^7.1.0",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-validator": "^7.3.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.10.1",
"pg": "^8.16.3",
"redis": "^5.10.0",
"swagger-ui-express": "^5.0.1",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prisma": "^7.1.0",
"supertest": "^7.1.4"
}
}