-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 952 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
36
37
38
{
"name": "supportbot",
"version": "1.0.1",
"description": "A slack support ticket app",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js | pino-pretty",
"test": "mocha --recursive --require test/mocha.opts.js",
"test:random": "mocha --require test/mocha.opts.js $(find test | grep .test.js | gshuf)"
},
"author": "",
"license": "ISC",
"dependencies": {
"@pagerduty/pdjs": "^2.2.2",
"@slack/bolt": "^3.3.0",
"dotenv": "^8.2.0",
"google-spreadsheet": "^3.1.15",
"googleapis": "^72.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"nanoid": "^3.1.22",
"node-fetch": "^2.0",
"octokit": "^2.0.10",
"pino": "^6.11.3",
"pino-pretty": "^4.7.1",
"ws": "^7.4.6"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-arrays": "^2.2.0",
"mocha": "^9.2.2",
"sinon": "^10.0.0"
},
"engines": {
"node": ">=14.15.0",
"yarn": "1.21.1"
}
}