forked from EmrysMyrddin/react-evaluation-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "formation-react",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:4000",
"dependencies": {
"bootstrap": "3.x.x",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.5",
"redux": "^4.0.0",
"redux-form": "^7.4.2",
"redux-form-validators": "^2.7.2",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"copycast": "^5.2.4",
"copycat": "^0.0.0",
"eslint": "^5.6.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-react": "^7.11.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"react-app",
"airbnb"
],
"rules": {
"semi": [
2,
"never"
],
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"react/jsx-filename-extension": "off",
"react/forbid-prop-types": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/no-static-element-interactions": "off",
"react/require-default-props": "off",
"no-underscore-dangle": "off"
}
}
}