-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 951 Bytes
/
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": "app-incident-bot",
"version": "1.0.0",
"description": "",
"engines": {
"node": "10.14.0"
},
"main": "build/app.js",
"scripts": {
"test": "nyc mocha -r ts-node/register src/**/*.spec.ts",
"lint": "eslint src/**/*.ts",
"start": "node build/app.js",
"build": "tsc",
"postinstall": "npm run build"
},
"author": "Slack Technologies, Inc.",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^1.5.0",
"dotenv": "^8.2.0",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@types/mysql2": "github:types/mysql2",
"@types/node": "^12.12.2",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"chai": "^4.2.0",
"eslint": "^6.7.0",
"eslint-config-prettier": "^6.7.0",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"nyc": "^14.1.1",
"ts-node": "^8.5.2"
}
}