-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.98 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": "fah-stats",
"version": "0.1.0",
"private": true,
"homepage": "/",
"scripts": {
"start": "export HTTPS=true&&SSL_CRT_FILE='./.cert/cert.pem'&&SSL_KEY_FILE='./.cert/key.pem' react-app-rewired start",
"build": "react-app-rewired build && npm run setup-docs",
"setup-docs": "cp _config.yml build;cp CNAME build;",
"lint": "eslint --ext .js --ext .jsx .",
"lint-fix": "eslint --ext .js --ext .jsx . --fix",
"lint-quiet": "eslint --ext .js --ext .jsx . || true",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@ant-design/icons": "^4.4.0",
"@emotion/babel-preset-css-prop": "^11.0.0",
"@emotion/react": "^11.1.4",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"antd": "^4.8.2",
"customize-cra": "^1.0.0",
"dayjs": "^1.10.4",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-css-theme-switcher": "^0.1.6",
"react-dom": "^17.0.1",
"react-fetch-progressbar": "^1.0.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"redux": "^4.0.5",
"uuid": "^8.3.2",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"babel-plugin-import": "^1.13.1",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"react-app-rewired": "^2.1.6"
}
}