-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "client",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env TSC_COMPILE_ON_ERROR=true react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "yarn lint && yarn tsc",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"tsc": "tsc",
"test-unit": "cross-env CI=true react-scripts test"
},
"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"
]
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@testing-library/user-event": "^10.0.1",
"axios": "^0.19.2",
"core-js": "^3.6.5",
"emotion-theming": "^10.0.27",
"final-form": "^4.19.1",
"framer-motion": "^1.10.3",
"immer": "^6.0.3",
"immutable": "^4.0.0-rc.12",
"polished": "^3.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-final-form": "^6.4.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"typescript": "^3.8.3",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.4",
"@types/uuid": "^7.0.2",
"cross-env": "^7.0.2",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.4"
},
"resolutions": {
"@emotion/styled/@emotion/styled-base": "^10.0.31"
}
}