-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1.03 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": "@slack/template-account-binding",
"version": "0.1.0",
"description": "Template application for account binding between an internal service and Slack (node).",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"start": "node index.js",
"test": "npm run lint"
},
"author": "Ankur Oberoi <[email protected]>",
"license": "MIT",
"dependencies": {
"@slack/client": "^3.10.0",
"axios": "^0.16.1",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.1",
"config": "^1.25.1",
"connect-flash": "^0.1.1",
"csurf": "^1.9.0",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-session": "^1.15.2",
"level": "^1.6.0",
"level-session-store": "^2.0.1",
"level-sublevel": "^6.6.1",
"param-case": "^2.1.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pug": "^3.0.1",
"randomstring": "^1.1.5",
"uuid": "^3.0.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0"
}
}