-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 834 Bytes
/
package.json
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": "express-prisma-boilerplate",
"version": "1.0.0",
"description": "An Express - Prisma ORM boilerplate",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dj0nny/express-prisma-bolierplate.git"
},
"keywords": [],
"author": "dj0nny <frank96990@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dj0nny/express-prisma-bolierplate/issues"
},
"homepage": "https://github.com/dj0nny/express-prisma-bolierplate#readme",
"dependencies": {
"@prisma/client": "^4.2.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"prisma": "^4.2.1"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}