Files
lingji-work-fe/package.json

91 lines
2.8 KiB
JSON
Raw Normal View History

2025-06-16 14:42:26 +08:00
{
"name": "template-admin-ts",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite",
"build:test": "vite build --mode test && tar -czvf dist-test.tar.gz dist",
2025-07-07 15:36:24 +08:00
"build:prod": "vite build --mode production && tar -czvf dist.tar.gz dist",
2025-06-16 14:42:26 +08:00
"build-only": "vite build -- mode development",
"type-check": "vue-tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
2025-09-25 15:26:42 +08:00
"@ant-design/icons-vue": "^7.0.1",
2025-06-16 14:42:26 +08:00
"@arco-design/web-vue": "^2.42.0",
2025-08-25 11:49:58 +08:00
"@microsoft/fetch-event-source": "^2.0.1",
2025-06-16 14:42:26 +08:00
"@types/nprogress": "^0.2.0",
"@vueuse/core": "^9.12.0",
"ali-oss": "^6.17.1",
"ant-design-vue": "~4.2.6",
"ant-design-x-vue": "^1.3.2",
2025-06-16 14:42:26 +08:00
"axios": "^1.3.0",
"dayjs": "^1.11.7",
"dompurify": "^3.2.6",
2025-06-16 14:42:26 +08:00
"echarts": "^5.6.0",
2025-07-30 17:44:27 +08:00
"element-resize-detector": "^1.2.4",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
2025-06-16 14:42:26 +08:00
"lodash-es": "^4.17.21",
2025-08-20 18:17:23 +08:00
"markdown-it": "^14.1.0",
"marked": "^16.1.1",
2025-06-16 14:42:26 +08:00
"mitt": "^3.0.0",
"normalize.css": "^8.0.1",
"pinia": "^2.0.29",
2025-06-17 11:18:39 +08:00
"sass": "^1.89.2",
2025-06-16 14:42:26 +08:00
"swiper": "^11.2.8",
"update": "^0.7.4",
"vue": "^3.5.0",
"vue-cropper": "^1.1.4",
"vue-draggable-next": "^2.2.1",
2025-06-30 15:35:23 +08:00
"vue-draggable-plus": "^0.6.0",
2025-06-16 14:42:26 +08:00
"vue-echarts": "^7.0.3",
"vue-lazyload": "^3.0.0",
"vue-router": "^4.4.0",
2025-06-30 15:35:23 +08:00
"vuedraggable": "^4.1.0"
2025-06-16 14:42:26 +08:00
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@rushstack/eslint-patch": "^1.2.0",
"@types/mockjs": "^1.0.7",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@unocss/preset-rem-to-px": "^0.49.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.33.0",
"eslint-config-alloy": "^4.9.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"jsencrypt": "^3.3.1",
"less": "^4.1.3",
"lint-staged": "^13.1.0",
"mockjs": "^1.1.0",
"npm-run-all": "^4.1.5",
"nprogress": "0.2.0",
"prettier": "^2.8.3",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "~4.9.5",
"unocss": "^0.49.2",
"unplugin-auto-import": "^0.13.0",
"unplugin-icons": "^0.15.2",
"unplugin-vue-components": "^0.23.0",
"unplugin-vue-define-options": "^1.2.4",
"vite": "^4.0.4",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-progress": "^0.0.6",
"vite-plugin-svg-icons": "^2.0.1",
2025-06-16 14:42:26 +08:00
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.0.24"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown --ignore-path .gitignore",
"src/*": "eslint --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
}
}