-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.2 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
98
99
100
101
{
"name": "web",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^3.13.6",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"history": "^4.7.2",
"install": "^0.12.2",
"jwt-decode": "^2.2.0",
"mobx": "^4.3.1",
"mobx-react": "^5.4.3",
"node-sass": "^4.11.0",
"react": "^16.7.0",
"react-app-polyfill": "^0.2.0",
"react-dom": "^16.7.0",
"react-ga": "^2.5.7",
"react-google-recaptcha": "^1.0.5",
"react-leaflet": "^2.1.4",
"react-reveal": "^1.2.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.2",
"react-scroll": "^1.7.10",
"react-slick": "^0.23.2",
"reactjs-popup": "^1.3.2",
"slick-carousel": "^1.8.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "7.2.0",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^4.1.2",
"babel-eslint": "9.0.0",
"babel-loader": "8.0.4",
"babel-runtime": "^6.26.0",
"cross-env": "^5.2.0",
"eslint": "5.6.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"styled-components": "^3.3.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"jest"
],
"extends": [
"standard",
"standard-react",
"prettier",
"plugin:jest/recommended"
],
"env": {
"jest/globals": true
},
"globals": {
"FormData": true,
"alert": true
}
},
"prettier": {
"singleQuote": true,
"semi": false
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}