forked from KhushiJain2004/Major_Project_Pipeline_Gen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 881 Bytes
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
{
"name": "cicd-pipeline-generator",
"version": "1.0.0",
"description": "GitHub App that analyzes repositories and generates optimized CI/CD pipelines",
"main": "index.js",
"type":"module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --watch src --exec node src/index.js",
"server": "node src/server.js",
"dev:probot": "probot run ./src/probot-entry.js",
"analyze": "node src/index.js",
"test": "echo \"No tests configured\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"@octokit/rest": "^19.0.7",
"octokit": "^5.0.5",
"@octokit/auth-app": "^8.1.2",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"yaml": "^2.3.1",
"nodemon": "^2.0.22",
"probot": "^14.2.4",
"@huggingface/inference": "^4.13.4"
}
}