chore: update deps

This commit is contained in:
chansee97 2024-04-12 14:52:08 +08:00
parent 33c1d4087d
commit cd67da6b00
3 changed files with 21 additions and 15 deletions

View File

@ -31,6 +31,7 @@
- Dark theme adaptation, maintaining the Naive style for interface aesthetics. - Dark theme adaptation, maintaining the Naive style for interface aesthetics.
- Only performs eslint validation during submission without excessive restrictions for simpler development. - Only performs eslint validation during submission without excessive restrictions for simpler development.
- Flexible and configurable interface style layout. - Flexible and configurable interface style layout.
- Multilanguage (i18n) support.
## Project preview ## Project preview
@ -52,7 +53,7 @@
## Install and use ## Install and use
The local development environment is recommended to use pnpm 8.x, Node.js 18.x The local development environment is recommended to use pnpm 8.x, Node.js must be version 20.x.
```bash ```bash
# install dependencies # install dependencies

View File

@ -31,6 +31,7 @@
- 黑暗主题适配, 界面样式保持Naive风格 - 黑暗主题适配, 界面样式保持Naive风格
- 仅在提交时进行eslint校验没有过多限制开发更简便 - 仅在提交时进行eslint校验没有过多限制开发更简便
- 界面样式布局灵活可配置 - 界面样式布局灵活可配置
- 多语言i18n支持
## 项目预览 ## 项目预览
@ -52,7 +53,7 @@
## 安装使用 ## 安装使用
本地开发环境建议使用 pnpm 8.x 、Node.js 18.x 本地开发环境建议使用 pnpm 8.x 、Node.js 必须 20.x
```bash ```bash
# install dependencies # install dependencies

View File

@ -46,13 +46,14 @@
"preview": "vite preview --port 9981", "preview": "vite preview --port 9981",
"lint": "eslint .", "lint": "eslint .",
"lint:fix": "eslint . --fix", "lint:fix": "eslint . --fix",
"lint:check": "npx @eslint/config-inspector",
"sizecheck": "npx vite-bundle-visualizer" "sizecheck": "npx vite-bundle-visualizer"
}, },
"dependencies": { "dependencies": {
"@alova/scene-vue": "^1.4.5", "@alova/scene-vue": "^1.4.6",
"@tinymce/tinymce-vue": "^5.1.1", "@tinymce/tinymce-vue": "^5.1.1",
"@vueuse/core": "^10.9.0", "@vueuse/core": "^10.9.0",
"alova": "^2.17.1", "alova": "^2.19.0",
"chroma-js": "^2.4.2", "chroma-js": "^2.4.2",
"echarts": "^5.5.0", "echarts": "^5.5.0",
"md-editor-v3": "^4.11.3", "md-editor-v3": "^4.11.3",
@ -62,37 +63,40 @@
"qs": "^6.12.0", "qs": "^6.12.0",
"radash": "^12.1.0", "radash": "^12.1.0",
"vue": "^3.4.21", "vue": "^3.4.21",
"vue-i18n": "^9.11.0", "vue-i18n": "^9.11.1",
"vue-router": "^4.3.0" "vue-router": "^4.3.0"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^2.8.3", "@antfu/eslint-config": "^2.13.3",
"@iconify-json/icon-park-outline": "^1.1.15", "@iconify-json/icon-park-outline": "^1.1.15",
"@iconify/vue": "^4.1.1", "@iconify/vue": "^4.1.1",
"@types/chroma-js": "^2.4.4", "@types/chroma-js": "^2.4.4",
"@types/node": "^20.11.28", "@types/node": "^20.12.7",
"@types/qs": "^6.9.12", "@types/qs": "^6.9.14",
"@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0", "@vitejs/plugin-vue-jsx": "^3.1.0",
"eslint": "^8.57.0", "eslint": "^9.0.0",
"lint-staged": "^15.2.2", "lint-staged": "^15.2.2",
"naive-ui": "^2.38.1", "naive-ui": "^2.38.1",
"sass": "^1.72.0", "sass": "^1.75.0",
"simple-git-hooks": "^2.10.0", "simple-git-hooks": "^2.11.1",
"typescript": "^5.4.2", "typescript": "^5.4.5",
"unocss": "^0.58.6", "unocss": "^0.59.1",
"unplugin-auto-import": "^0.17.5", "unplugin-auto-import": "^0.17.5",
"unplugin-icons": "^0.18.5", "unplugin-icons": "^0.18.5",
"unplugin-vue-components": "^0.26.0", "unplugin-vue-components": "^0.26.0",
"vite": "^5.1.6", "vite": "^5.2.8",
"vite-bundle-visualizer": "^1.1.0", "vite-bundle-visualizer": "^1.1.0",
"vite-plugin-compression": "^0.5.1", "vite-plugin-compression": "^0.5.1",
"vue-tsc": "^2.0.6" "vue-tsc": "^2.0.12"
}, },
"simple-git-hooks": { "simple-git-hooks": {
"pre-commit": "pnpm lint-staged" "pre-commit": "pnpm lint-staged"
}, },
"lint-staged": { "lint-staged": {
"*": "eslint --fix" "*": "eslint --fix"
},
"volta": {
"node": "20.12.2"
} }
} }