-
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.2 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 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
46
47
{
"name": "notifier-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"seed:announcements": "node prisma/seed/announcementsSeed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"description": "",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"@prisma/client": "^6.19.0",
"@supabase/supabase-js": "^2.101.1",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"crypto": "^1.0.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.3",
"morgan": "^1.10.1",
"multer": "^2.1.1",
"nodemailer": "^8.0.3",
"rate-limit-redis": "^4.3.1",
"swagger-ui-express": "^5.0.1",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"cross-env": "^10.1.0",
"jest": "^30.3.0",
"nodemon": "^3.1.14",
"prisma": "^6.19.0",
"supertest": "^7.2.2"
}
}