forked from nemanjakrstic/snitch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "snitch",
"version": "0.2.0",
"description": "GoCD Slack Bot for notifications",
"type": "module",
"scripts": {
"start": "node src/index.js",
"monitor-jobs": "node src/monitor-jobs.js start",
"monitor-agents": "node src/monitor-elastic-agents.js start",
"dev": "nodemon --delay 3 --watch src src/index.js",
"format": "prettier -l --write src"
},
"dependencies": {
"@slack/bolt": "^3.3.0",
"@slack/web-api": "^7.5.0",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"config": "^3.3.6",
"cron": "^3.1.7",
"dayjs": "^1.11.13",
"junit-viewer": "^4.11.1",
"lodash-es": "^4.17.21",
"md5": "^2.3.0",
"slack-notify": "^2.0.7"
},
"devDependencies": {
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
},
"prettier": {
"semi": true,
"printWidth": 120,
"trailingComma": "all",
"singleQuote": false,
"bracketSpacing": true,
"useTabs": false,
"arrowParens": "always",
"bracketSameLine": false,
"tabWidth": 4
}
}