-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 910 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
34
35
36
37
38
39
{
"name": "library-manager",
"version": "1.0.0",
"description": "library manager with prisma orm",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"keywords": [
"prisma",
"orm",
"nodejs"
],
"author": "Samuel Owadayo",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.1.1",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-status": "^1.6.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.5.2",
"nodemon": "^3.0.1",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"prisma": "^5.1.1"
}
}