-
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) · 849 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 849 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": "githubtaskpopulator",
"version": "1.0.0",
"description": "This application utilizes GenAI to automatically generate task descriptions for software projects.",
"main": "index.js",
"scripts": {
"start-cl": "ts-node src/index.ts",
"start": "ts-node src/app.ts",
"dev": "nodemon --watch src --ext ts --exec ts-node src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.5.4",
"nodemon": "^3.1.7",
"typescript": "^5.5.4"
},
"dependencies": {
"@google-cloud/vertexai": "^1.7.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"octokit": "^4.0.2",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"tsc": "^2.0.4",
"typeorm": "^0.3.20"
}
}