-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "backend",
"version": "1.0.0",
"description": "RenovateBot Dashboard - Backend API",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"postinstall": "prisma generate",
"build": "tsc",
"start": "node dist/index.js",
"db:migrate": "prisma migrate dev",
"db:migrate:prod": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:generate": "prisma generate",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.6.0",
"@socket.io/redis-adapter": "^8.3.0",
"connect-redis": "^9.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.5",
"pg": "^8.20.0",
"redis": "^5.11.0",
"socket.io": "^4.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/morgan": "^1.9.10",
"@types/node": "^25.5.0",
"@types/nodemailer": "^7.0.11",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"prisma": "^7.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.2"
}
}