-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
50
51
52
{
"name": "slack-bug-triage",
"version": "0.1.0",
"description": "Automatically triage bugs in a Slack channel.",
"main": "src/app.js",
"type": "module",
"scripts": {
"lint": "eslint src/**/*.js",
"dev": "eslint && npm run start",
"start": "node --experimental-specifier-resolution=node src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"redis": "docker run --name redis -p 6379:6379 -d redis"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/launchgood/slack-bug-triage.git"
},
"keywords": [
"Slack",
"Bot",
"Github",
"issues",
"triage",
"bugs",
"bug",
"report"
],
"author": "Matthew J. Martin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/launchgood/slack-bug-triage/issues"
},
"homepage": "https://github.com/launchgood/slack-bug-triage#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@ladjs/env": "^3.0.0",
"@slack/bolt": "^3.9.0",
"aws-sdk": "^2.1080.0",
"axios": "^0.26.0",
"change-case": "^4.1.2",
"ioredis": "^4.28.5",
"luxon": "^2.3.0",
"object-mapper": "^6.2.0",
"slack-block-builder": "^2.5.0"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4"
}
}