forked from pvince/worker_bee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 775 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 775 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
{
"name": "worker_bee",
"version": "1.0.0",
"description": "Hive13 Slack Bot",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register tests/**.ts",
"start": "tsc && node dist/app.js",
"compile": "tsc",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@slack/bolt": "^3.3.0",
"@slack/web-api": "^6.1.0",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"mocha": "^8.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}