-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.03 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
71
72
73
74
75
{
"name": "competition-system",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "dotenv -e .env.production react-app-rewired build",
"build:view": "dotenv -e .env.production.local react-app-rewired build",
"eject": "react-app-rewired eject",
"start": "react-app-rewired start",
"test": "react-app-rewired test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.150",
"@types/node": "^12.0.0",
"@types/pretty": "^2.0.0",
"@types/qs": "^6.9.1",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.3",
"@types/react-transition-group": "^4.2.4",
"@umijs/hooks": "^1.9.0",
"antd": "^4.0.3",
"axios": "^0.19.2",
"babel-plugin-import": "^1.13.0",
"immer": "^6.0.2",
"lodash": "^4.17.15",
"node-sass": "^4.13.1",
"qs": "^6.9.1",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-transition-group": "^4.3.0",
"typescript": "~3.7.2",
"unstated-next": "^1.1.0",
"use-immer": "^0.3.5"
},
"devDependencies": {
"@hot-loader/react-dom": "^16.13.0",
"compression-webpack-plugin": "^4.0.0",
"customize-cra": "^0.9.1",
"dotenv-cli": "^3.1.0",
"hard-source-webpack-plugin": "^0.13.1",
"pretty": "^2.0.0",
"progress-bar-webpack-plugin": "^2.1.0",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.1.5",
"react-hot-loader": "^4.12.21",
"webpack-bundle-analyzer": "^3.8.0"
}
}