-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 889 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 889 Bytes
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
{
"name": "data-bolt-js-slack-chatbot",
"version": "2.1.0",
"description": "Data - a BoltJS powered Slack Chatbot",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node app.js",
"test": "node --test",
"lint": "eslint . --ext .js --max-warnings 0",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/scarolan/data.git"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"dependencies": {
"@keyv/redis": "^5.1.1",
"@slack/bolt": "^3.17.1",
"chatgpt": "^5.2.5",
"dotenv": "^16.4.5",
"keyv": "^5.5.0",
"node-fetch": "^3.3.2",
"openai": "^4.28.0"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.1.0",
"prettier": "^2.8.8"
}
}