-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
117 lines (117 loc) · 3.19 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "react-xs-admin",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@9.0.0",
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"staging": "tsc && vite build --mode staging",
"preview": "vite preview",
"lint:eslint": "eslint \"{src,mock,build}/**/*.{ts,js,tsx,jsx}\" package.json --fix",
"lint:prettier": "prettier . --write",
"lint:staged": "lint-staged",
"check:type": "tsc --noEmit",
"lint:eslint-insppect-config": "npx @eslint/config-inspector --config eslint.config.js",
"log": "conventional-changelog -p cmyr-config -i CHANGELOG.md -s -r 0",
"tsc": "tsc --noEmit --skipLibCheck",
"cz": "czg",
"prepare": "husky"
},
"dependencies": {
"@ant-design/charts": "^1.4.3",
"@ant-design/colors": "^7.1.0",
"@ant-design/icons": "^5.5.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@reduxjs/toolkit": "^2.5.0",
"ahooks": "^3.8.4",
"antd": "^5.22.5",
"axios": "^1.7.9",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"keepalive-for-react": "^3.0.7",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"match-sorter": "^8.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-intl": "^7.0.4",
"react-redux": "^9.2.0",
"react-router": "^7.1.0",
"react-router-dom": "^7.1.0",
"redux-persist": "^6.0.0",
"sort-by": "^1.2.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.13.5",
"@emotion/eslint-plugin": "^11.12.0",
"@eslint-react/eslint-plugin": "^1.22.0",
"@jsxiaosi/commitlint-config": "^1.0.9",
"@jsxiaosi/eslint-config": "^1.0.9",
"@jsxiaosi/eslint-config-prettier": "^1.0.9",
"@types/crypto-js": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"commitlint": "^19.6.1",
"conventional-changelog-cli": "^5.0.0",
"crypto-js": "^4.2.0",
"czg": "^1.11.0",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"husky": "^9.1.7",
"less": "^4.2.1",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-fake-server": "^2.1.4",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-svg-icons": "^2.0.1"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup",
"@babel/core"
]
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"{src,mock,build}/**/*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"eslint --fix"
],
"package.json": [
"prettier --write"
],
"*.md": [
"eslint --fix",
"prettier --write"
]
}
}