-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
97 lines (97 loc) · 1.93 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "stage-ci",
"version": "1.3.0",
"main": "server.js",
"license": "MIT",
"engines": {
"node": "8.0.x"
},
"scripts": {
"build": "node ./src/build.js",
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js",
"test": "xo && ava",
"precommit": "npm test -s"
},
"dependencies": {
"axios": "^0.15.2",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"mz": "^2.5.0",
"promise-queue": "^2.2.3",
"simple-git": "^1.60.0",
"url": "^0.11.0",
"winston": "^2.3.0",
"winston-papertrail": "^1.0.3"
},
"devDependencies": {
"ava": "^0.16.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.7.1",
"husky": "^0.11.9",
"nodemon": "^1.11.0",
"xo": "^0.17.1"
},
"xo": {
"extends": "xo-react",
"esnext": true,
"space": true,
"rules": {
"no-warning-comments": "warn",
"space-infix-ops": 0,
"one-var": [
"error",
{
"uninitialized": "always",
"initialized": "never"
}
],
"max-statements-per-line": [
"error",
{
"max": 2
}
],
"brace-style": [
"error",
"1tbs",
{
"allowSingleLine": true
}
],
"curly": [
"error",
"multi",
"consistent"
],
"quote-props": [
"error",
"consistent"
],
"arrow-parens": [
"error",
"always"
],
"unicorn/catch-error-name": [
"error",
{
"name": "error"
}
],
"unicorn/filename-case": 0,
"react/jsx-first-prop-new-line": 0,
"react/jsx-closing-bracket-location": 0,
"react/jsx-space-before-closing": [
"error",
"always"
],
"react/jsx-no-bind": [
"error",
{
"ignoreRefs": true,
"allowArrowFunctions": true
}
]
}
}
}