-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.33 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
53
54
55
56
57
58
59
{
"name": "@coralproject/slack-bouncer",
"version": "1.3.1",
"author": "",
"license": "Apache-2.0",
"bin": {
"slack-bouncer": "./cli.js"
},
"scripts": {
"start": "./cli.js serve",
"watch": "nodemon ./cli.js serve",
"test": "eslint ."
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@coralproject/eslint-config-talk": "^0.1.0",
"eslint": "^4.18.2",
"nodemon": "^1.19.4",
"pre-commit": "^1.2.2"
},
"dependencies": {
"@google-cloud/error-reporting": "^1.1.3",
"@google-cloud/pubsub": "^1.6.0",
"@hapi/joi": "^16.1.7",
"accepts": "^1.3.7",
"body-parser": "^1.19.0",
"cli-table": "^0.3.1",
"commander": "^4.0.1",
"connect-redis": "^4.0.3",
"convict": "^5.2.0",
"crypto-js": "^3.1.9-1",
"csurf": "^1.10.0",
"dotenv": "^8.2.0",
"ejs": "^2.7.2",
"express": "^4.17.1",
"express-session": "^1.17.0",
"graphql-request": "^1.8.2",
"helmet": "^3.21.2",
"ioredis": "^4.14.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mongoose": "^5.7.11",
"node-fetch": "^2.6.1",
"pluralize": "^8.0.0",
"prom-client": "^11.5.3",
"semver": "^6.3.0",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"pre-commit": {
"silent": false,
"run": [
"test"
]
}
}