vue3-element-admin/package.json

122 lines
3.4 KiB
JSON
Raw Normal View History

2021-11-13 23:26:02 +08:00
{
2022-05-08 13:06:12 +08:00
"name": "vue3-element-admin",
"version": "2.6.7",
"private": true,
2022-05-08 13:06:12 +08:00
"scripts": {
"preinstall": "npx only-allow pnpm",
2022-05-08 13:06:12 +08:00
"dev": "vite serve --mode development",
2023-08-04 17:50:25 +08:00
"build:prod": "vite build --mode production && vue-tsc --noEmit",
2022-05-08 13:06:12 +08:00
"prepare": "husky install",
"lint:eslint": "eslint --fix --ext .ts,.js,.vue ./src ",
"lint:prettier": "prettier --write \"**/*.{js,cjs,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint \"**/*.{css,scss,vue}\" --fix",
"lint:lint-staged": "lint-staged",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{cjs,json}": [
"prettier --write"
],
"*.{vue,html}": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,css}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
2022-05-08 13:06:12 +08:00
},
"dependencies": {
2023-08-07 18:17:03 +08:00
"@element-plus/icons-vue": "^2.1.0",
"@vitejs/plugin-vue": "^4.4.0",
2023-11-08 22:18:44 +08:00
"@vueuse/core": "^10.5.0",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "5.1.10",
2023-11-08 22:18:44 +08:00
"axios": "^1.6.0",
"echarts": "^5.4.3",
"element-plus": "^2.4.2",
2023-06-01 23:22:58 +08:00
"lodash-es": "^4.17.21",
2023-08-11 18:35:18 +08:00
"mockjs": "^1.1.0",
"net": "^1.0.2",
2022-05-08 13:06:12 +08:00
"nprogress": "^0.2.0",
"path-browserify": "^1.0.1",
2023-11-08 22:18:44 +08:00
"path-to-regexp": "^6.2.1",
"pinia": "^2.1.7",
"screenfull": "^6.0.2",
"sockjs-client": "1.6.1",
2023-08-11 18:35:18 +08:00
"sortablejs": "^1.15.0",
"stompjs": "^2.3.3",
2023-11-08 22:18:44 +08:00
"terser": "^5.24.0",
"vue": "^3.3.8",
"vue-i18n": "9.2.2",
2023-11-08 22:18:44 +08:00
"vue-router": "^4.2.5",
"xlsx": "^0.18.5",
"dayjs": "^1.11.10"
2022-05-08 13:06:12 +08:00
},
"devDependencies": {
2023-11-08 22:18:44 +08:00
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@iconify-json/ep": "^1.1.12",
"@types/lodash": "^4.14.201",
"@types/nprogress": "^0.2.3",
"@types/path-browserify": "^1.0.2",
"@types/sockjs-client": "^1.5.4",
"@types/sortablejs": "^1.15.5",
"@types/stompjs": "^2.3.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
2023-10-22 00:03:41 +08:00
"@vitejs/plugin-vue-jsx": "^3.0.2",
2023-11-08 22:18:44 +08:00
"autoprefixer": "^10.4.16",
"commitizen": "^4.3.0",
2023-11-08 22:18:44 +08:00
"cz-git": "^1.7.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.2.1",
2023-11-08 22:18:44 +08:00
"eslint-plugin-vue": "^9.18.1",
"fast-glob": "^3.3.2",
"husky": "^8.0.3",
2023-11-08 22:18:44 +08:00
"lint-staged": "^13.3.0",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
2023-11-08 22:18:44 +08:00
"postcss-scss": "^4.0.9",
"prettier": "^2.8.8",
2023-11-08 22:18:44 +08:00
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-html": "^1.1.0",
2023-11-08 22:18:44 +08:00
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended-scss": "^13.1.0",
2023-08-04 17:50:25 +08:00
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
2023-11-08 22:18:44 +08:00
"stylelint-config-standard-scss": "^11.1.0",
"typescript": "^5.2.2",
"unocss": "^0.51.13",
"unplugin-auto-import": "^0.15.3",
2023-11-08 22:18:44 +08:00
"unplugin-icons": "^0.16.6",
"unplugin-vue-components": "^0.24.1",
2023-11-08 22:18:44 +08:00
"vite": "^4.5.0",
"vite-plugin-mock": "^3.0.0",
2023-08-11 18:35:18 +08:00
"vite-plugin-svg-icons": "^2.0.1",
2023-11-08 22:18:44 +08:00
"vue-tsc": "^1.8.22"
2022-05-08 13:06:12 +08:00
},
"repository": "https://gitee.com/youlaiorg/vue3-element-admin.git",
"author": "有来开源组织",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
}
}