| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- {
- "name": "gui-web",
- "description": "Gui Web",
- "version": "1.0.0",
- "type": "module",
- "private": true,
- "author": "kun",
- "license": "MIT",
- "scripts": {
- "dev": "vite --config ./config/vite.config.dev.ts",
- "build": "vue-tsc --noEmit && vite build --config ./config/vite.config.prod.ts",
- "report": "cross-env REPORT=true npm run build",
- "preview": "npm run build && vite preview --host",
- "type:check": "vue-tsc --noEmit --skipLibCheck",
- "lint-staged": "npx lint-staged",
- "prepare": "husky install",
- "remove": "rm -rf node_modules pnpm-lock.yaml"
- },
- "lint-staged": {
- "*.{js,ts,jsx,tsx}": [
- "prettier --write",
- "eslint --fix"
- ],
- "*.vue": [
- "stylelint --fix",
- "prettier --write",
- "eslint --fix"
- ],
- "*.{less,css}": [
- "stylelint --fix",
- "prettier --write"
- ]
- },
- "dependencies": {
- "@arco-design/web-vue": ">=2.57.0",
- "@vueuse/core": "^13.9.0",
- "axios": "^1.12.2",
- "dayjs": "^1.11.18",
- "lodash": "^4.17.21",
- "mitt": "^3.0.1",
- "nprogress": "^0.2.0",
- "pinia": "^3.0.3",
- "query-string": "^9.3.1",
- "sortablejs": "^1.15.6",
- "vue": "^3.5.22",
- "vue-i18n": "^11.1.12",
- "vue-router": "^4.5.1"
- },
- "devDependencies": {
- "@arco-design/web-vue": "^2.57.0",
- "@arco-plugins/vite-vue": "^1.4.6",
- "@commitlint/cli": "^20.0.0",
- "@commitlint/config-conventional": "^20.0.0",
- "@eslint/js": "^9.36.0",
- "@types/lodash": "^4.17.20",
- "@types/minimatch": "^6.0.0",
- "@types/mockjs": "^1.0.7",
- "@types/nprogress": "^0.2.3",
- "@types/sortablejs": "^1.15.8",
- "@typescript-eslint/eslint-plugin": "^8.45.0",
- "@typescript-eslint/parser": "^8.45.0",
- "@vitejs/plugin-vue": "^6.0.1",
- "@vitejs/plugin-vue-jsx": "5.1.1",
- "@vue/babel-plugin-jsx": "^1.5.0",
- "consola": "^3.4.2",
- "cross-env": "^10.1.0",
- "eslint": "^9.36.0",
- "eslint-config-airbnb-base": "^15.0.0",
- "eslint-config-prettier": "^10.1.8",
- "eslint-import-resolver-typescript": "^4.4.4",
- "eslint-plugin-import": "^2.32.0",
- "eslint-plugin-prettier": "^5.5.4",
- "eslint-plugin-vue": "^10.5.0",
- "globals": "^16.4.0",
- "husky": "^9.1.7",
- "jiti": "^2.6.0",
- "less": "^4.4.1",
- "lint-staged": "^16.2.3",
- "minimatch": "10.0.3",
- "mockjs": "^1.1.0",
- "postcss": "8.4.47",
- "postcss-html": "1.8.0",
- "prettier": "^3.6.1",
- "rollup": "^4.52.3",
- "rollup-plugin-visualizer": "^6.0.3",
- "stylelint": "^16.24.0",
- "stylelint-config-rational-order": "^0.1.2",
- "stylelint-config-recommended-vue": "^1.6.1",
- "stylelint-config-standard": "^39.0.0",
- "stylelint-order": "^7.0.0",
- "typescript": "^5.9.2",
- "typescript-eslint": "^8.45.0",
- "unplugin-vue-components": "^29.1.0",
- "vite": "^7.1.7",
- "vite-plugin-compression": "^0.5.1",
- "vite-plugin-imagemin": "^0.6.1",
- "vite-svg-loader": "^5.1.0",
- "vue-tsc": "^3.1.0"
- },
- "engines": {
- "node": ">=22.20.0"
- },
- "resolutions": {
- "bin-wrapper": "npm:bin-wrapper-china",
- "rollup": "^4.48.1",
- "gifsicle": "5.2.0"
- },
- "peerDependencies": {
- "@arco-design/web-vue": ">=2.57.0"
- }
- }
|