-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"name": "ci-cd-analyzer",
"version": "1.0.0",
"type": "module",
"description": "AI-Driven CI/CD Failure Analyzer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:backend": "node backend/src/index.js",
"start:frontend": "npm run dev --prefix frontend",
"start:worker": "node backend/src/workers/logProcessor.js",
"prisma:generate": "prisma generate --schema=./backend/prisma/schema.prisma",
"prisma:migrate": "prisma migrate dev --schema=./backend/prisma/schema.prisma",
"prisma:studio": "prisma studio --schema=./backend/prisma/schema.prisma"
},
"keywords": [],
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@octokit/app": "^15.0.1",
"@octokit/rest": "^21.0.1",
"@prisma/client": "^5.22.0",
"@types/adm-zip": "^0.5.7",
"adm-zip": "^0.5.16",
"axios": "^1.7.4",
"bcryptjs": "^3.0.3",
"bullmq": "^5.10.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.17.1",
"express-session": "^1.18.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-github2": "^0.1.12"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.9",
"@types/passport": "^1.0.16",
"@types/passport-github2": "^1.2.9",
"prisma": "^5.17.0"
},
"author": "",
"license": "ISC"
}