-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
39
40
41
42
{
"name": "probot-test-1",
"version": "1.0.0",
"private": true,
"description": "A Probot app",
"author": "Gregor Adams",
"type": "module",
"license": "AGPL-3.0",
"scripts": {
"build": "npx rimraf lib && tsc",
"watch": "tsc --watch",
"mon": "nodemon",
"dev": "concurrently npm:watch npm:mon",
"start": "probot run ./lib/index.js",
"test": "jest"
},
"dependencies": {
"@hyv/core": "../../failfa-st/hive/packages/core",
"@hyv/openai": "../../failfa-st/hive/packages/openai",
"@hyv/utils": "../../failfa-st/hive/packages/utils",
"axios": "1.4.0",
"parse-diff": "^0.11.1",
"probot": "../probot",
"tslib": "2.5.2"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"concurrently": "^8.0.1",
"jest": "^29.0.0",
"nock": "^13.0.5",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"smee-client": "^1.2.3",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
}
}