forked from pure-admin/vue-pure-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactor/theme
- Loading branch information
Showing
12 changed files
with
5,329 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,26 +2,43 @@ | |
"name": "vue-pure-admin", | ||
"version": "2.1.0", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"workspaces": [ | ||
"build/**", | ||
"mock/**", | ||
"src/**", | ||
"types/**" | ||
], | ||
"engines": { | ||
"node": ">= 16", | ||
"pnpm": ">= 6" | ||
}, | ||
"scripts": { | ||
"dev": "cross-env --max_old_space_size=4096 vite", | ||
"serve": "yarn dev", | ||
"serve": "pnpm dev", | ||
"build": "rimraf dist && cross-env vite build", | ||
"preview": "vite preview", | ||
"preview:build": "yarn build && vite preview", | ||
"clean:cache": "rm -rf node_modules && rm -rf .eslintcache && yarn cache clean && yarn", | ||
"preview:build": "pnpm build && vite preview", | ||
"clean:cache": "rm -rf node_modules && rm -rf .eslintcache && pnpm install", | ||
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix", | ||
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"", | ||
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,css,scss,postcss,less}\" --cache --cache-location node_modules/.cache/stylelint/", | ||
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js", | ||
"lint:pretty": "pretty-quick --staged", | ||
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:stylelint && yarn lint:pretty", | ||
"prepare": "husky install" | ||
"lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint && pnpm lint:pretty", | ||
"prepare": "husky install", | ||
"preinstall": "npx only-allow pnpm" | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"not ie 11", | ||
"not op_mini all" | ||
], | ||
"dependencies": { | ||
"@amap/amap-jsapi-loader": "^1.0.1", | ||
"@element-plus/icons": "^0.0.11", | ||
"@logicflow/core": "^0.7.1", | ||
"@logicflow/extension": "^0.7.1", | ||
"@logicflow/core": "0.7.1", | ||
"@logicflow/extension": "0.7.1", | ||
"@vueuse/core": "^6.7.1", | ||
"@vueuse/motion": "^2.0.0-beta.4", | ||
"animate.css": "^4.1.1", | ||
|
@@ -45,63 +62,63 @@ | |
"responsive-storage": "^1.0.11", | ||
"sortablejs": "1.13.0", | ||
"typescript-cookie": "^1.0.0", | ||
"v-contextmenu": "^3.0.0", | ||
"v-contextmenu": "3.0.0", | ||
"vue": "^3.2.20", | ||
"vue-i18n": "^9.2.0-beta.3", | ||
"vue-json-pretty": "^2.0.2", | ||
"vue-router": "^4.0.11", | ||
"vue-types": "^4.1.0", | ||
"vuedraggable": "^4.1.0", | ||
"vxe-table": "^4.0.30", | ||
"wangeditor": "^4.7.7", | ||
"xe-ajax": "^4.0.5", | ||
"xe-utils": "^3.4.0", | ||
"xgplayer": "^2.31.1" | ||
"vuedraggable": "4.1.0", | ||
"vxe-table": "4.0.30", | ||
"wangeditor": "4.7.7", | ||
"xe-ajax": "4.0.5", | ||
"xe-utils": "3.4.0", | ||
"xgplayer": "2.28.0" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^13.1.0", | ||
"@commitlint/config-conventional": "^13.1.0", | ||
"@types/element-resize-detector": "^1.1.3", | ||
"@types/mockjs": "^1.0.3", | ||
"@types/node": "^14.14.14", | ||
"@types/nprogress": "^0.2.0", | ||
"@typescript-eslint/eslint-plugin": "^4.31.0", | ||
"@typescript-eslint/parser": "^4.31.0", | ||
"@vitejs/plugin-vue": "^1.6.0", | ||
"@vitejs/plugin-vue-jsx": "^1.1.7", | ||
"@vue/compiler-sfc": "^3.2.20", | ||
"@vue/eslint-config-prettier": "^6.0.0", | ||
"@vue/eslint-config-typescript": "^7.0.0", | ||
"@commitlint/cli": "13.1.0", | ||
"@commitlint/config-conventional": "13.1.0", | ||
"@types/element-resize-detector": "1.1.3", | ||
"@types/mockjs": "1.0.3", | ||
"@types/node": "14.14.14", | ||
"@types/nprogress": "0.2.0", | ||
"@typescript-eslint/eslint-plugin": "4.31.0", | ||
"@typescript-eslint/parser": "4.31.0", | ||
"@vitejs/plugin-vue": "1.6.0", | ||
"@vitejs/plugin-vue-jsx": "1.1.7", | ||
"@vue/compiler-sfc": "3.2.20", | ||
"@vue/eslint-config-prettier": "6.0.0", | ||
"@vue/eslint-config-typescript": "7.0.0", | ||
"@zougt/vite-plugin-theme-preprocessor": "^1.3.4", | ||
"autoprefixer": "^10.2.4", | ||
"babel-plugin-transform-remove-console": "^6.9.4", | ||
"chalk": "^2.4.2", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^7.30.0", | ||
"eslint-plugin-prettier": "^3.4.0", | ||
"eslint-plugin-vue": "^7.17.0", | ||
"husky": "^7.0.2", | ||
"lint-staged": "^11.1.2", | ||
"postcss": "^8.2.6", | ||
"postcss-import": "^14.0.0", | ||
"prettier": "^2.3.2", | ||
"pretty-quick": "^3.1.1", | ||
"rimraf": "^3.0.2", | ||
"sass": "^1.38.0", | ||
"sass-loader": "^12.1.0", | ||
"stylelint": "^13.13.1", | ||
"stylelint-config-prettier": "^8.0.2", | ||
"stylelint-config-standard": "^22.0.0", | ||
"stylelint-order": "^4.1.0", | ||
"typescript": "^4.4.2", | ||
"autoprefixer": "10.2.4", | ||
"babel-plugin-transform-remove-console": "6.9.4", | ||
"chalk": "2.4.2", | ||
"cross-env": "7.0.3", | ||
"eslint": "7.30.0", | ||
"eslint-plugin-prettier": "3.4.0", | ||
"eslint-plugin-vue": "7.17.0", | ||
"husky": "7.0.2", | ||
"lint-staged": "11.1.2", | ||
"postcss": "8.2.6", | ||
"postcss-import": "14.0.0", | ||
"prettier": "2.3.2", | ||
"pretty-quick": "3.1.1", | ||
"rimraf": "3.0.2", | ||
"sass": "1.38.0", | ||
"sass-loader": "12.1.0", | ||
"stylelint": "13.13.1", | ||
"stylelint-config-prettier": "8.0.2", | ||
"stylelint-config-standard": "22.0.0", | ||
"stylelint-order": "4.1.0", | ||
"typescript": "4.4.2", | ||
"unplugin-element-plus": "^0.1.0", | ||
"vite": "^2.6.11", | ||
"vite": "latest", | ||
"vite-plugin-mock": "^2.9.6", | ||
"vite-plugin-style-import": "^1.2.1", | ||
"vite-svg-loader": "^2.2.0", | ||
"vue-eslint-parser": "^7.10.0" | ||
"vue-eslint-parser": "7.10.0" | ||
}, | ||
"repository": "[email protected]:xiaoxian521/vue-pure-admin.git", | ||
"author": "xiaoxian521", | ||
"license": "MIT" | ||
} | ||
} |
Oops, something went wrong.