-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 892 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 892 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
{
"name": "prisma-demo",
"version": "1.0.0",
"description": "",
"main": "app.js",
"prisma": {
"seed": "node --require esbuild-register ./src/seed.ts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.15.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"prisma": "^4.15.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/node": "^20.2.5",
"@types/swagger-ui-express": "^4.1.3",
"esbuild-register": "^3.4.2",
"nodemon": "^2.0.22",
"typescript": "^5.1.3"
}
}