-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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": "react18-antd5-template",
"private": true,
"scripts": {
"prepare": "husky install",
"lint-staged": "lint-staged",
"dev": "vite --host",
"build:prod": "vite build",
"serve": "vite preview",
"lint": "eslint 'src/**/*.{ts,tsx}'"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix --quiet --ignore-path .eslintignore",
"prettier --write"
],
"src/**/*.{less,css}": "stylelint --fix --ignore-path .eslintignore"
},
"dependencies": {
"@ant-design/icons": "^5.1.4",
"@ant-design/plots": "^1.2.5",
"@ant-design/pro-components": "^2.6.6",
"@emotion/css": "^11.11.2",
"@reduxjs/toolkit": "^1.9.5",
"ahooks": "^3.7.8",
"antd": "^5.6.2",
"axios": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"react-router-dom": "^6.8.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@faker-js/faker": "^8.0.2",
"@types/node": "18.x",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^3.0.1",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-config-css-modules": "^4.3.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"typescript": "^4.9.5",
"vite": "^4.0.4",
"vite-plugin-stylelint": "^4.3.0"
}
}