-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 759 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 759 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
{
"name": "nodejs-prisma-restapi",
"version": "1.0.0",
"description": "Demo API for the Marvel Universe, using NodeJS, Express, Sqlite, Prisma",
"main": "index.js",
"type": "module",
"scripts": {
"migrate": "prisma migrate dev --name init",
"generate": "prisma generate",
"reset": "prisma migrate reset --force",
"seed": "prisma db seed",
"server-start": "prisma migrate deploy && node src/index.js",
"server-watch": "node --watch src/index.js"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"author": "Tim Haselaars",
"license": "ISC",
"devDependencies": {
"prisma": "^6.3.0"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@prisma/internals": "^5.22.0",
"express": "^4.21.2"
}
}