-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (39 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (39 loc) · 1.2 KB
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
40
41
42
43
44
45
{
"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",
"start": "node src/index.js",
"reset-db": "npx prisma db push --force-reset && npx prisma db seed",
"clean-start": "npm run reset-db && npm run start",
"test-positive": "newman run \"./postman/collections/Winc 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 reset-db && npm run test-positive && npm run test-negative"
},
"author": "Amir Darzi",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"@sentry/node": "^7.64.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.3",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"devDependencies": {
"md-to-pdf": "^5.2.5",
"newman": "^6.0.0",
"nodemon": "^3.0.1",
"prisma": "^5.22.0"
},
"engines": {
"node": ">=18 <19"
}
}