forked from anc95/ChatGPT-CodeReview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "cr-bot",
"version": "1.0.0",
"private": true,
"description": "A Probot app",
"author": "anc95",
"license": "ISC",
"type": "module",
"homepage": "https://github.com//",
"keywords": [
"probot",
"github",
"probot-app",
"code review"
],
"scripts": {
"start": "node -r dotenv/config ./dist/index.js",
"test": "jest",
"build": "rm -rf dist && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript && ncc build src/github-action.cjs -o action",
"build:lambda": "ncc build src/aws-lambda.cjs -o lambda"
},
"dependencies": {
"@probot/adapter-aws-lambda-serverless": "^3.0.2",
"@probot/adapter-github-actions": "^3.1.3",
"@vercel/edge": "^0.2.7",
"chatgpt": "^5",
"dotenv": "^16.0.3",
"next": "^13.1.6",
"node-fetch": "^3.3.0",
"probot": "^12.2.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@types/pino-std-serializers": "^4.0.0",
"@vercel/ncc": "^0.36.1",
"esbuild": "^0.17.7",
"jest": "^29.0.0",
"nock": "^13.0.5",
"rollup": "^3.15.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-esbuild": "^5.0.0",
"smee-client": "^1.2.2",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 18"
}
}