forked from slackapi/template-triage-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 892 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
{
"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": ">=20.10.0"
},
"dependencies": {
"@slack/bolt": "^3.21.4",
"cron": "^3.1.7",
"cronstrue": "^2.50.0",
"javascript-time-ago": "^2.5.11",
"json2csv": "^5.0.1",
"mongoose": "^6.1.7",
"randomstring": "^1.3.0"
},
"devDependencies": {
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"nodemon": "^3.1.4"
}
}