-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1019 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
{
"name": "express-bookings",
"version": "1.0.0",
"type": "module",
"description": "Your REST API for managing bookings",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js",
"test-positive": "newman run \"./postman/collections/Bookings API.json\" -e \"./postman/environments/Local.postman_environment.json\"",
"test-negative": "newman run \"./postman/collections/Bookings API Negative.json\" -e \"./postman/environments/Local.postman_environment.json\"",
"test": "npm run test-positive && npm run test-negative",
"seed": "node prisma/seed.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.9.1",
"@sentry/node": "^7.64.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"har-validator": "latest",
"jsonwebtoken": "^9.0.1",
"uuid": "latest",
"winston": "^3.10.0"
},
"devDependencies": {
"newman": "^6.0.0",
"nodemon": "^3.0.1",
"prisma": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}