-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
98 lines (98 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-ant-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development craco start ",
"build": "cross-env NODE_ENV=production craco build",
"test": "craco test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src -c .eslintrc.js --fix --ext .ts,.tsx,.js,.jsx src",
"preview": "cd dist && live-server --port=9527",
"prepare": "husky install"
},
"dependencies": {
"@emotion/css": "^11.11.0",
"@rc-component/color-picker": "^1.0.0",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@tinymce/tinymce-react": "^4.3.0",
"ahooks": "^3.7.7",
"antd": "^5.4.7",
"axios": "^1.4.0",
"clipboard": "^2.0.11",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"draftjs-to-markdown": "^0.6.0",
"driver.js": "^0.9.8",
"echarts": "^5.4.2",
"file-saver": "^2.0.5",
"i18next": "^22.4.15",
"js-cookie": "^3.0.5",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"ol": "^7.3.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-countup": "^6.4.2",
"react-document-title": "^2.0.3",
"react-dom": "^18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"react-i18next": "^12.2.2",
"react-loadable": "^5.5.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.1",
"react-scripts": "5.0.1",
"react-transition-group": "^4.4.5",
"screenfull": "^6.0.2",
"script-loader": "^0.7.2",
"svgo": "^3.0.2",
"web-vitals": "^2.1.4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"compression-webpack-plugin": "^5.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"mockjs": "^1.1.0",
"path-browserify": "^1.0.1",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"speed-measure-webpack-plugin": "^1.5.0",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.8",
"webpack-bundle-analyzer": "^4.8.0"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"eslint -c .eslintrc.js --fix"
]
},
"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"
]
}
}