-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.08 KB
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": "modern-react-with-redux",
"version": "0.1.0",
"main": "src/index.js",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"axios": "0.20.0",
"lodash": "4.17.20",
"react": "16.12.0",
"react-redux": "7.2.1",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"react-dom": "16.12.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.0.1"
},
"devDependencies": {
"typescript": "3.8.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": [
"react-app",
"shared-config"
],
"rules": {
"no-unused-vars": "off"
},
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"no-unused-vars": "off"
}
}
]
}
}