-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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": "slack-github-review-gptbot",
"version": "1.0.0",
"description": "Slack Bot with OpenAI Assistants API. The bot is deployed on AWS Lambda platform by AWS CDK.",
"main": "index.js",
"scripts": {
"lint": "eslint './functions/**/*.{js,ts}' --fix",
"test": "jest"
},
"author": "noboru-kudo",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.126",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.449.0",
"@aws-sdk/client-lambda": "^3.449.0",
"@aws-sdk/client-ssm": "^3.449.0",
"@aws-sdk/lib-dynamodb": "^3.451.0",
"@slack/web-api": "^6.10.0",
"i": "^0.3.7",
"npm": "^10.2.3",
"octokit": "^3.1.1",
"openai": "^4.17.4"
}
}