-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.16 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
{
"name": "react-simply",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://github.com/zhicheng29/react-simply",
"repository": {
"type": "git",
"url": "git+https://github.com/zhicheng29/react-simply.git"
},
"bugs": {
"url": "https://github.com/zhicheng29/react-simply/issues"
},
"license": "MIT",
"author": {
"name": "zhicheng29",
"email": "wzchenglll@163.com",
"url": "https://github.com/zhicheng29"
},
"scripts": {
"serve": "vite",
"build:dev": "tsc && vite build --mode development",
"build:test": "tsc && vite build --mode test",
"build:staging": "tsc && vite build --mode staging",
"build:pro": "tsc && vite build --mode production",
"preview": "vite preview",
"type:check": "tsc --noEmit --skipLibCheck",
"lint:eslint": "eslint --fix --ext .js,.ts,.tsx ./src ./build",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,html,md}\"",
"lint:stylelint": "stylelint --cache --fix \"**/*.{less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"commit": "git pull && git add -A && czg && git push"
},
"dependencies": {
"@ant-design/icons": "^5.3.3",
"@reduxjs/toolkit": "^2.2.1",
"antd": "^5.15.3",
"axios": "^1.6.8",
"dayjs": "^1.11.10",
"highlight.js": "^11.9.0",
"lucide-react": "^0.368.0",
"md5": "^2.3.0",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^3.1.0",
"rehype-highlight": "^7.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@types/md5": "^2.3.5",
"@types/node": "^20.11.28",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"cz-git": "^1.9.0",
"czg": "^1.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"postcss-html": "^1.6.0",
"postcss-less": "^6.0.0",
"prettier": "^3.2.5",
"rollup-plugin-visualizer": "^5.12.0",
"stylelint": "^16.2.1",
"stylelint-config-recess-order": "^5.0.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-imagemin": "^0.6.1"
},
"engines": {
"node": ">=20.11.0",
"pnpm": ">=8.15.1"
},
"packageManager": "pnpm@8.15.1",
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"resolutions": {
"bin-wrapper": "npm:bin-wrapper-china"
}
}