forked from MadisonReed/oncall-slackbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.29 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
45
46
47
48
49
{
"author": "Jk Jensen <[email protected]>",
"name": "oncall-slackbot",
"description": "Pager Duty #slack bot",
"version": "0.3.28",
"main": "app.js",
"private": true,
"scripts": {
"start": "npm run build && node dist/src/app.js",
"build": "tsc && tsc-alias -p tsconfig.json",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"keywords": [
"slack",
"bot",
"slackapi",
"typescript",
"pagerduty"
],
"repository": {
"type": "git",
"url": "https://github.com/after-ephemera/oncall-slackbot.git"
},
"bugs": {
"url": "https://github.com/slack-samples/bolt-ts-starter-template/issues"
},
"dependencies": {
"@slack/bolt": "^3.17.1",
"config": "^3.3.10",
"dotenv": "~16.3.1",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@slack/types": "^2.11.0",
"@types/config": "^3.3.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
}
}