-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "template-triage-bot",
"version": "1.0.1",
"description": "Triage stats for Slack channels powered by Bolt for JS",
"repository": {
"type": "git",
"url": "https://github.com/slackapi/template-triage-bot"
},
"main": "app.js",
"scripts": {
"test": "echo '/!\\ Tests consists of just linting for now' && npm run lint",
"start": "node app.js",
"lint": "npx standard --fix",
"debug": "npx nodemon --inspect -r dotenv/config app.js"
},
"author": "Slack",
"license": "MIT",
"engines": {
"node": "12.x"
},
"dependencies": {
"@slack/bolt": "^3.9.0",
"cronstrue": "^1.94.0",
"json2csv": "^5.0.1",
"mongoose": "^6.1.7",
"node-cron": "^2.0.3",
"randomstring": "^1.1.5"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^8.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4"
}
}