-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.78 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
{
"name": "bigtable",
"version": "0.1.0",
"private": true,
"homepage": "https://pofigizm.github.io/bigtable",
"devDependencies": {
"babel-eslint": "7.1.1",
"eslint": "3.14.1",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.9.0",
"gh-pages": "0.12.0",
"react-addons-perf": "15.4.2",
"react-scripts": "0.8.5"
},
"dependencies": {
"react": "15.4.2",
"react-dom": "15.4.2",
"react-jss": "5.2.0",
"react-redux": "5.0.2",
"redux": "3.6.0"
},
"scripts": {
"lint": "eslint src/.",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-1"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"no-console": 0,
"arrow-body-style": 0,
"arrow-parens": [
2,
"as-needed"
],
"comma-dangle": [
2,
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
],
"semi": [
2,
"never"
],
"import/extensions": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"jsx-a11y/no-static-element-interactions": 0,
"react/jsx-curly-spacing": 0,
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0,
"react/prop-types": 0
}
}
}