-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.04 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
{
"name": "tidy.surf",
"private": true,
"engines": {
"node": ">=8.11.1"
},
"dependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/node": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"babel-eslint": "^8.2.6",
"eslint": "^5.3.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.4.2",
"lerna": "^3.0.0-rc.0",
"regenerator-runtime": "^0.12.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true,
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"standard",
"jest",
"react"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"globals": {
"server": false,
"browser": false,
"expect": false,
"process": false,
"global": false,
"Promise": false
},
"env": {
"jest/globals": true
},
"rules": {
"standard/object-curly-even-spacing": [
2,
"either"
],
"standard/array-bracket-even-spacing": [
2,
"either"
],
"standard/computed-property-even-spacing": [
2,
"even"
],
"standard/no-callback-literal": [
2,
[
"cb",
"callback"
]
],
"no-console": [
"error"
]
}
},
"scripts": {
"analyze": "lerna bootstrap --scope app --include-filtered-dependencies && lerna run analyze",
"bootstrap": "lerna bootstrap",
"dev": "lerna bootstrap --scope app --include-filtered-dependencies && lerna run --parallel dev",
"heroku-postbuild": "lerna bootstrap --scope $LERNA_SCOPE --include-filtered-dependencies && lerna exec --scope app -- npm run build",
"lint": "eslint .",
"test": "jest --verbose",
"test-watch": "jest src --watchAll"
}
}