-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
{
"name": "slack-roll",
"version": "1.0.0",
"description": "Roll a random number through slack",
"main": "app.js",
"scripts": {
"start": "babel-node app.js",
"dev": "nodemon --inspect app.js --exec babel-node --",
"test": "mocha --require @babel/register test/**/*.js",
"start-db": "redis-server"
},
"author": "Brian Chung",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "^7.0.0-0",
"body-parser": "^1.18.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"http-errors": "^1.7.2",
"oauth": "^0.9.15",
"redis": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.1.2",
"nodemon": "^1.18.10",
"supertest": "^4.0.0"
},
"eslintConfig": {
"extends": "airbnb-base",
"parser": "babel-eslint",
"env": {
"es6": true,
"browser": true,
"mocha": true
},
"rules": {
"brace-style": [
"error",
"stroustrup"
],
"comma-dangle": [
"error",
"never"
],
"no-unused-vars": [
"warn"
],
"no-var": [
"off"
],
"one-var": [
"off"
]
}
}
}