-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.03 KB
/
package.json
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
{
"name": "gh-app",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "npm-run-all --parallel start:webpack start:server",
"start:webpack": "webpack --config=webpack.config.js --watch --mode development",
"start:server": "nodemon --watch dist --exec 'node dist/index.js'",
"test": "jest",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/vertexai": "^1.3.0",
"@octokit/rest": "^20.0.2",
"axios": "^1.6.8",
"express": "^4.19.2",
"node-cron": "^3.0.3",
"octokit": "^3.2.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/preset-env": "^7.24.4",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"nock": "^13.5.4",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}