Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-22 03:49:19 +08:00
v3-admin-vite/package.json

106 lines
3.0 KiB
JSON
Raw Normal View History

2022-04-20 22:40:26 +08:00
{
"name": "v3-admin-vite",
2023-02-02 13:38:08 +08:00
"version": "3.3.2",
"description": "一个免费开源的中后台管理系统基础解决方案,基于 Vue3、TypeScript、Element Plus、Pinia 和 Vite 等主流技术.",
2022-04-22 15:05:27 +08:00
"author": {
"name": "pany",
"email": "939630029@qq.com",
"url": "https://github.com/pany-ang"
},
"repository": {
"type": "git",
"url": "https://github.com/un-pany/v3-admin-vite.git"
},
2022-04-20 22:40:26 +08:00
"scripts": {
"dev": "vite",
"build:stage": "vue-tsc --noEmit && vite build --mode staging",
"build:prod": "vue-tsc --noEmit && vite build",
"preview:stage": "pnpm build:stage && vite preview",
"preview:prod": "pnpm build:prod && vite preview",
2022-10-18 09:51:34 +08:00
"lint:eslint": "eslint --cache --max-warnings 0 \"src/**/*.{vue,js,ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
2022-04-25 19:29:35 +08:00
"lint": "pnpm lint:eslint && pnpm lint:prettier",
2023-02-16 14:38:21 +08:00
"prepare": "husky install",
"test": "vitest"
2022-04-20 22:40:26 +08:00
},
"dependencies": {
2022-10-09 23:12:42 +08:00
"@element-plus/icons-vue": "^2.0.10",
2023-02-16 10:41:23 +08:00
"axios": "^1.3.3",
2022-12-30 17:19:41 +08:00
"dayjs": "^1.11.7",
2023-02-13 09:19:22 +08:00
"element-plus": "^2.2.30",
2022-04-21 16:43:59 +08:00
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"path-browserify": "^1.0.1",
2022-05-10 10:16:43 +08:00
"path-to-regexp": "^6.2.1",
2023-02-02 13:38:08 +08:00
"pinia": "^2.0.30",
2022-07-01 14:27:01 +08:00
"screenfull": "^6.0.2",
2023-02-07 11:38:46 +08:00
"vue": "^3.2.47",
"vue-router": "^4.1.6",
2023-02-13 09:19:22 +08:00
"vxe-table": "^4.3.10",
"vxe-table-plugin-element": "^3.0.6",
"xe-utils": "^3.5.7"
2022-04-20 22:40:26 +08:00
},
"devDependencies": {
2022-04-26 11:50:50 +08:00
"@types/js-cookie": "^3.0.2",
2022-04-21 16:43:59 +08:00
"@types/lodash-es": "^4.17.6",
2023-02-13 09:19:22 +08:00
"@types/node": "^18.13.0",
2022-04-21 16:43:59 +08:00
"@types/nprogress": "^0.2.0",
"@types/path-browserify": "^1.0.0",
2023-02-16 10:41:23 +08:00
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
2022-12-30 17:19:41 +08:00
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
2022-09-30 10:00:11 +08:00
"@vue/eslint-config-typescript": "^11.0.2",
2023-02-16 17:36:47 +08:00
"@vue/test-utils": "^2.2.10",
2023-02-13 09:19:22 +08:00
"eslint": "^8.34.0",
2022-07-01 14:27:01 +08:00
"eslint-plugin-prettier": "^4.2.1",
2023-02-01 10:28:18 +08:00
"eslint-plugin-vue": "^9.9.0",
2023-01-09 17:03:56 +08:00
"husky": "^8.0.3",
2023-02-16 17:36:47 +08:00
"jsdom": "^21.1.0",
2023-02-16 10:41:23 +08:00
"lint-staged": "^13.1.2",
2023-02-13 09:19:22 +08:00
"prettier": "^2.8.4",
2023-02-16 10:41:23 +08:00
"sass": "^1.58.1",
2023-02-07 11:38:46 +08:00
"terser": "^5.16.3",
2023-02-01 10:28:18 +08:00
"typescript": "^4.9.5",
2023-02-07 11:38:46 +08:00
"unocss": "^0.49.4",
"vite": "^4.1.1",
2022-04-21 17:14:30 +08:00
"vite-plugin-svg-icons": "^2.0.1",
2022-12-30 17:19:41 +08:00
"vite-svg-loader": "^4.0.0",
2023-02-16 14:38:21 +08:00
"vitest": "^0.28.5",
2022-09-13 14:26:49 +08:00
"vue-eslint-parser": "^9.1.0",
2023-02-16 10:41:23 +08:00
"vue-tsc": "^1.1.0"
2022-04-21 16:43:59 +08:00
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
2022-04-25 19:29:35 +08:00
"eslint --fix",
"prettier --write"
],
"*.{scss,less,css,html,md}": [
"prettier --write"
],
"package.json": [
"prettier --write"
],
"{!(package)*.json,.!(browserslist)*rc}": [
"prettier --write--parser json"
2022-04-21 16:43:59 +08:00
]
2022-04-22 15:05:27 +08:00
},
"keywords": [
"vue",
"vue3",
"admin",
2022-10-17 17:14:51 +08:00
"vue-admin",
"vue3-admin",
"vite",
"vite-admin",
"element-plus",
"element-plus-admin",
"ts",
2022-04-22 15:05:27 +08:00
"typescript"
],
"license": "MIT"
2022-04-20 23:48:58 +08:00
}