-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.25 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
{
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"@slack/bolt": "^3.14.0",
"@slack/web-api": "^6.9.1",
"@types/jest": "^29.5.7",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"node-cache": "^5.1.2",
"openai": "^4.16.1",
"supertest": "^6.3.3",
"tiktoken": "^1.0.10",
"ts-jest": "^29.1.1"
},
"name": "slack-gpt",
"version": "1.0.0",
"main": "index.js",
"repository": "ssh://[email protected]/pyama86/slack-gpt3.git",
"author": "pyama <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"lint": "eslint src --ext .ts",
"test": "OPENAI_API_KEY=dummy_api_key jest",
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts"
}
}