gohttpdUi/package.json

122 lines
4.0 KiB
JSON
Raw Normal View History

2020-12-14 17:32:37 +08:00
{
2022-02-21 19:46:37 +08:00
"name": "vue-element-plus-admin",
2022-06-25 22:02:05 +08:00
"version": "1.5.0",
2022-03-01 15:09:36 +08:00
"description": "一套基于vue3、element-plus、typesScript、vite2的后台集成方案。",
2021-12-10 17:10:51 +08:00
"author": "Archer <502431556@qq.com>",
"private": false,
2020-12-14 17:32:37 +08:00
"scripts": {
2021-12-07 16:36:16 +08:00
"i": "pnpm install",
"dev": "vite --mode base",
"ts:check": "vue-tsc --noEmit",
2022-02-18 14:44:08 +08:00
"build:pro": "vite build --mode pro",
2022-02-21 21:44:57 +08:00
"build:gitee": "vite build --mode gitee",
2021-12-07 16:36:16 +08:00
"build:dev": "npm run ts:check && vite build --mode dev",
"build:test": "npm run ts:check && vite build --mode test",
"serve:pro": "vite preview --mode pro",
"serve:dev": "vite preview --mode dev",
"serve:test": "vite preview --mode test",
"npm:check": "npx npm-check-updates",
2022-02-20 17:55:22 +08:00
"clean": "npx rimraf node_modules",
2021-12-07 16:36:16 +08:00
"clean:cache": "npx rimraf node_modules/.cache",
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
"lint:format": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md}\"",
"lint:style": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
2022-04-15 09:28:50 +08:00
"prepare": "husky install",
2022-04-08 19:54:59 +08:00
"p": "plop"
2020-12-14 17:32:37 +08:00
},
"dependencies": {
2022-04-07 09:14:42 +08:00
"@iconify/iconify": "^2.2.1",
2022-06-30 21:00:33 +08:00
"@vueuse/core": "^8.7.5",
2022-06-05 20:39:16 +08:00
"@wangeditor/editor": "^5.1.1",
2022-04-18 15:54:28 +08:00
"@wangeditor/editor-for-vue": "^5.1.10",
2022-03-26 11:30:24 +08:00
"@zxcvbn-ts/core": "^2.0.1",
2022-01-06 17:13:13 +08:00
"animate.css": "^4.1.1",
2022-04-29 15:01:38 +08:00
"axios": "^0.27.2",
2022-06-19 16:37:42 +08:00
"echarts": "^5.3.3",
"echarts-wordcloud": "^2.0.0",
2022-06-19 16:37:42 +08:00
"element-plus": "2.2.6",
2022-04-07 09:14:42 +08:00
"intro.js": "^5.1.0",
2022-06-24 21:36:33 +08:00
"js-md5": "^0.7.3",
2021-12-11 20:50:05 +08:00
"lodash-es": "^4.17.21",
2022-02-19 14:26:05 +08:00
"mitt": "^3.0.0",
2022-01-07 17:38:24 +08:00
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"pinia": "^2.0.14",
2022-03-13 10:31:42 +08:00
"pinia-plugin-persist": "^1.0.0",
"qrcode": "^1.5.0",
2022-06-30 21:00:33 +08:00
"qs": "^6.11.0",
2022-04-26 10:53:52 +08:00
"url": "^0.11.0",
2022-06-06 21:31:47 +08:00
"vue": "3.2.37",
2022-05-05 14:58:06 +08:00
"vue-i18n": "9.1.10",
2022-06-19 16:37:42 +08:00
"vue-router": "^4.0.16",
2022-01-05 17:02:25 +08:00
"vue-types": "^4.1.1",
"web-storage-cache": "^1.1.1"
2020-12-14 17:32:37 +08:00
},
"devDependencies": {
2022-06-30 21:00:33 +08:00
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@iconify/json": "^2.1.70",
2022-04-07 09:14:42 +08:00
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
2022-03-02 08:27:00 +08:00
"@purge-icons/generated": "^0.8.1",
"@types/intro.js": "^3.0.2",
2022-06-24 21:36:33 +08:00
"@types/js-md5": "^0.4.3",
2022-02-07 17:32:37 +08:00
"@types/lodash-es": "^4.17.6",
2022-06-19 16:37:42 +08:00
"@types/node": "^18.0.0",
"@types/nprogress": "^0.2.0",
"@types/qrcode": "^1.4.2",
"@types/qs": "^6.9.7",
2022-06-30 21:00:33 +08:00
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
2022-05-14 09:42:23 +08:00
"@vitejs/plugin-vue": "^2.3.3",
2022-04-14 08:36:46 +08:00
"@vitejs/plugin-vue-jsx": "^1.3.10",
2022-05-05 14:58:06 +08:00
"autoprefixer": "^10.4.7",
2022-06-19 16:37:42 +08:00
"eslint": "^8.18.0",
2022-03-07 08:51:44 +08:00
"eslint-config-prettier": "^8.5.0",
2022-06-09 20:23:50 +08:00
"eslint-define-config": "^1.5.1",
2022-06-30 21:00:33 +08:00
"eslint-plugin-prettier": "^4.2.1",
2022-06-19 16:37:42 +08:00
"eslint-plugin-vue": "^9.1.1",
2022-05-10 16:11:48 +08:00
"husky": "^8.0.1",
2022-06-09 20:23:50 +08:00
"less": "^4.1.3",
2022-06-30 21:00:33 +08:00
"lint-staged": "^13.0.3",
2022-06-19 16:37:42 +08:00
"plop": "^3.1.1",
2022-06-01 20:18:00 +08:00
"postcss": "^8.4.14",
2022-04-18 15:54:28 +08:00
"postcss-html": "^1.4.1",
"postcss-less": "^6.0.0",
2022-06-19 16:37:42 +08:00
"prettier": "^2.7.1",
2021-12-07 16:36:16 +08:00
"rimraf": "^3.0.2",
2022-06-30 21:00:33 +08:00
"rollup": "^2.75.7",
2022-06-19 16:37:42 +08:00
"stylelint": "^14.9.1",
2021-12-07 17:16:17 +08:00
"stylelint-config-html": "^1.0.0",
2021-12-07 16:36:16 +08:00
"stylelint-config-prettier": "^9.0.3",
2022-06-09 20:23:50 +08:00
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
2021-12-07 16:36:16 +08:00
"stylelint-order": "^5.0.0",
2022-06-19 16:37:42 +08:00
"typescript": "4.7.4",
2022-04-26 10:39:10 +08:00
"unplugin-vue-define-options": "^0.6.1",
2022-06-30 21:00:33 +08:00
"vite": "2.9.13",
2022-06-01 20:18:00 +08:00
"vite-plugin-eslint": "^1.6.1",
2022-03-17 08:28:16 +08:00
"vite-plugin-html": "^3.2.0",
2022-01-07 17:38:24 +08:00
"vite-plugin-mock": "^2.9.6",
2022-03-02 08:27:00 +08:00
"vite-plugin-purge-icons": "^0.8.1",
2022-02-28 08:43:46 +08:00
"vite-plugin-style-import": "^1.4.1",
"vite-plugin-svg-icons": "^2.0.1",
2022-06-30 21:00:33 +08:00
"vite-plugin-windicss": "^1.8.6",
"vue-tsc": "^0.38.2",
"windicss": "^3.5.6",
"windicss-analysis": "^0.3.5"
2021-12-10 17:10:51 +08:00
},
"engines": {
"node": ">= 14.0.0"
2021-12-10 17:10:51 +08:00
},
2022-02-19 09:04:56 +08:00
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kailong321200875/vue-element-plus-admin.git"
},
"bugs": {
"url": "https://github.com/kailong321200875/vue-element-plus-admin/issues"
},
"homepage": "https://github.com/kailong321200875/vue-element-plus-admin"
2021-12-07 17:16:17 +08:00
}