-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
{
"name": "react-redux-materialUI-template",
"version": "1.0.0",
"private": true,
"dependencies": {
"axios": "^0.19.0",
"connected-react-router": "6.3.1",
"history": "4.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "6.0.1",
"react-router": "5.0.1",
"react-scripts": "3.1.1",
"redux": "4.0.1",
"redux-actions": "^2.3.0",
"redux-form": "8.1.0",
"redux-saga": "1.0.1",
"reselect": "4.0.0"
},
"devDependencies": {
"@redux-saga/testing-utils": "1.0.1",
"axios-mock-adapter": "1.16.0",
"chokidar-cli": "^2.0.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.9.1",
"enzyme-to-json": "3.3.5",
"eslint": "^6.1.0",
"eslint-loader": "2.1.2",
"eslint-plugin-flowtype": "3.4.2",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"eslint-config-react-app": "5.0.1",
"eslint-plugin-react-hooks": "2.0.1",
"file-loader": "3.0.1",
"flow-bin": "0.93.0",
"flow-typed": "2.5.1",
"flow-watch": "1.1.4",
"jest": "24.8.0",
"jest-pnp-resolver": "1.1.0",
"jest-resolve": "24.1.0",
"prettier": "1.16.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006",
"prettier": "prettier --loglevel warn --write \"{src,src-startup}/**/*.{js,json}\"",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"lint-watch": "chokidar \"src/**/*.js\" -c \"eslint src\" --initial --polling"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}