forked from frontend-winter/react-admin-vite-antd5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.75 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
{
"name": "react-admin-vite-antd5",
"version": "0.0.0",
"author": {
"name": "frontend-winter",
"url": "https://github.com/frontend-winter/react-admin-vite-antd5"
},
"scripts": {
"build": "npm run typecheck && vite build --mode production",
"commit": "git-cz",
"dev": "vite --mode development",
"format": "prettier . --write --ignore-path .gitignore && git update-index --again",
"lint": "eslint . --ext .ts,.tsx --fix --ignore-path .gitignore",
"serve": "npm run build && vite preview --port 3000",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@ant-design/pro-components": "^2.3.39",
"@emotion/css": "^11.10.5",
"@types/redux-logger": "^3.0.9",
"antd": "^5.0.1",
"dayjs": "^1.11.6",
"lodash": "^4.17.21",
"rc-texty": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.3",
"react-transition-group": "^4.4.5",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"sass": "^1.56.1"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@react-native-community/eslint-plugin": "^1.3.0",
"@types/crypto-js": "^4.1.1",
"@types/lodash": "^4.14.190",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-transition-group": "^4.4.5",
"@vitejs/plugin-legacy": "^1.8.2",
"@vitejs/plugin-react": "^1.3.2",
"crypto-js": "^4.1.1",
"eslint": "8.22.0",
"prettier": "^2.7.1",
"redux-devtools-extension": "^2.13.9",
"start-server-and-test": "^1.14.0",
"typescript": "^4.7.4",
"vite": "^2.9.12",
"vite-plugin-compression": "^0.5.1"
}
}