-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.45 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.45 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
46
47
{
"name": "eventsite",
"version": "1.0.0",
"description": "Fullstack Event Site - REST API + React frontend",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"build": "prisma generate",
"seed": "node prisma/seed.js",
"test-positive": "newman run \"./src/postman/collections/Events API.json\" -e \"./src/postman/environments/Local.postman_environment.json\"",
"test-negative": "newman run \"./src/postman/collections/Events API Negative.json\" -e \"./src/postman/environments/Local.postman_environment.json\"",
"test": "npm run test-positive && npm run test-negative"
},
"prisma": {
"schema": "prisma/schema.prisma"
},
"author": "A el Yakoubi",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"@sentry/node": "^7.79.0",
"@sentry/profiling-node": "^1.2.6",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-oauth2-jwt-bearer": "^1.8.0",
"express-rate-limit": "^8.0.1",
"express-validator": "^7.2.0",
"helmet": "^7.1.0",
"html-pdf": "^3.0.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^8.0.4",
"parseurl": "^1.3.3",
"puppeteer": "^24.10.1",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"newman": "^2.1.2",
"nodemon": "^3.0.1",
"prisma": "^5.22.0"
}
}