-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 KB
/
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
{
"name": "express-bookings",
"version": "1.0.0",
"type": "module",
"prisma": {
"seed": "node prisma/seed.js"
},
"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",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org robincompagner --project booking-api-robin ./src/out && sentry-cli sourcemaps upload --org robincompagner --project booking-api-robin ./src/out"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.21.1",
"@sentry/cli": "^2.37.0",
"@sentry/node": "^7.119.2",
"dotenv": "^16.3.1",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"uuid": "^9.0.0",
"winston": "^3.15.0"
},
"devDependencies": {
"newman": "^6.0.0",
"nodemon": "^3.0.1",
"prisma": "^5.20.0"
},
"engines": {
"node": ">=18 <19"
}
}