This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.49 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
{
"name": "dora-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview --port 4000",
"lint": "eslint . --ext .ts,.tsx,.js",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@ahooksjs/use-url-state": "^3.1.9",
"@ant-design/pro-card": "^1.15.4",
"@ant-design/pro-layout": "^6.25.7",
"@ant-design/pro-list": "^1.17.1",
"@rematch/core": "^2.2.0",
"@rematch/loading": "^2.1.2",
"@tailwindcss/typography": "^0.4.1",
"ahooks": "^3.1.9",
"antd": "^4.16.13",
"axios": "^0.21.4",
"dayjs": "^1.10.7",
"echarts": "^5.2.1",
"history": "^5.0.1",
"lodash-es": "^4.17.21",
"nanoid": "^3.1.25",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.1.1",
"react-redux": "^7.2.6",
"react-router": "^6.0.2",
"react-router-dom": "^6.0.2",
"size-sensor": "^1.0.1",
"styled-components": "^5.3.1",
"type-fest": "^2.5.0",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@ant-design/pro-form": "^1.43.3",
"@babel/core": "^7.16.12",
"@babel/runtime": "^7.16.7",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.0.1",
"@types/lodash-es": "^4.17.5",
"@types/node": "^16.9.3",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.15",
"@vitejs/plugin-react": "^1.1.4",
"autoprefixer": "^10.4.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"less": "^4.1.2",
"less-vars-to-js": "^1.3.0",
"lint-staged": "^11.1.2",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.15",
"typescript": "^4.4.3",
"vite": "^2.7.13"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,less,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"^@/(.+)": "<rootDir>/src/$1"
}
}
}