-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "react-redux-sample",
"version": "0.1.0",
"homepage": "https://jfcere.github.io/react-redux-sample",
"private": true,
"dependencies": {
"@material-ui/core": "^4.8.3",
"axios": "^0.21.0",
"formik": "^2.1.3",
"formik-material-ui": "^2.0.0-alpha.3",
"miragejs": "^0.1.41",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-spring": "^8.0.27",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-dynamic-modules": "^5.2.0",
"redux-dynamic-modules-saga": "^5.2.0",
"redux-saga": "^1.1.3",
"yup": "^0.28.1"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-motion": "^0.0.29",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/yup": "^0.26.29",
"gh-pages": "^3.1.0",
"node-sass": "^4.13.1",
"react-scripts": "3.3.0",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-react": "^4.2.0",
"typescript": "~3.7.2"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "tslint -c tslint.json src/**/*.{ts,tsx} --fix --format verbose",
"start": "react-scripts start"
},
"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"
]
}
}