-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·80 lines (80 loc) · 2.16 KB
/
package.json
File metadata and controls
executable file
·80 lines (80 loc) · 2.16 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-h5",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.9.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"animate.css": "^3.7.2",
"antd-mobile": "^2.3.1",
"axios": "^0.19.2",
"better-scroll": "^1.15.2",
"classnames": "^2.2.6",
"customize-cra": "^0.9.1",
"dayjs": "^1.8.36",
"http-proxy-middleware": "^0.20.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.12.0",
"react-loading": "^2.0.3",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.1",
"react-slick": "^0.25.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"styled-components": "^5.0.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject"
},
"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"
]
},
"devDependencies": {
"babel-plugin-import": "^1.13.0",
"cssnano-preset-advanced": "^4.0.7",
"postcss-aspect-ratio-mini": "^1.0.1",
"postcss-px-to-viewport": "^1.1.1",
"postcss-viewport-units": "^0.1.6",
"postcss-write-svg": "^3.0.1",
"react-app-rewire-postcss": "^3.0.2"
},
"theme": {
"@brand-primary": "#007FFE",
"@brand-primary-tap": "#0072E3",
"@brand-success": "#79ceb8",
"@brand-warning": "#ffdb00",
"@brand-error": "#e95f5c",
"@brand-important": "#ff5b05",
"@brand-wait": "#b7b7b7",
"@comment-text-bg": "#F4F6F5",
"@tab-bar-fill": "@brand-primary",
"@nav-bar-fill": "@brand-primary",
"@fill-tap": "@brand-primary-tap",
"@fill-grey": "#f7f7f7"
}
}