mirror of
https://github.com/un-pany/v3-admin-vite.git
synced 2025-04-21 03:19:19 +08:00
84 lines
2.3 KiB
JSON
84 lines
2.3 KiB
JSON
{
|
|
"name": "v3-admin-vite",
|
|
"version": "3.1.3",
|
|
"description": "一个中后台管理系统基础解决方案,基于 Vue3、TypeScript、Element-Plus、Pinia 和 Vite",
|
|
"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"
|
|
},
|
|
"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",
|
|
"lint:eslint": "eslint \"src/**/*.{vue,ts,tsx}\" --fix",
|
|
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
|
|
"lint": "pnpm lint:eslint && pnpm lint:prettier"
|
|
},
|
|
"dependencies": {
|
|
"@element-plus/icons-vue": "^1.1.4",
|
|
"axios": "^0.26.1",
|
|
"dayjs": "^1.11.1",
|
|
"element-plus": "^2.1.10",
|
|
"js-cookie": "^3.0.1",
|
|
"lodash-es": "^4.17.21",
|
|
"normalize.css": "^8.0.1",
|
|
"nprogress": "^0.2.0",
|
|
"path-browserify": "^1.0.1",
|
|
"path-to-regexp": "^6.2.0",
|
|
"pinia": "^2.0.13",
|
|
"screenfull": "^6.0.1",
|
|
"vue": "^3.2.33",
|
|
"vue-router": "^4.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-cookie": "^3.0.1",
|
|
"@types/lodash-es": "^4.17.6",
|
|
"@types/node": "^17.0.25",
|
|
"@types/nprogress": "^0.2.0",
|
|
"@types/path-browserify": "^1.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
|
"@typescript-eslint/parser": "^5.20.0",
|
|
"@vitejs/plugin-vue": "^2.3.1",
|
|
"@vue/eslint-config-prettier": "^7.0.0",
|
|
"@vue/eslint-config-typescript": "^10.0.0",
|
|
"eslint": "^8.13.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-vue": "^8.6.0",
|
|
"lint-staged": "^12.4.0",
|
|
"prettier": "^2.6.2",
|
|
"sass": "^1.50.1",
|
|
"typescript": "^4.6.3",
|
|
"unplugin-auto-import": "^0.7.1",
|
|
"unplugin-vue-components": "^0.19.3",
|
|
"vite": "^2.9.5",
|
|
"vite-plugin-svg-icons": "^2.0.1",
|
|
"vue-eslint-parser": "^8.3.0",
|
|
"vue-tsc": "^0.34.7"
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,vue,ts,tsx}": [
|
|
"pnpm lint",
|
|
"git add"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"vue",
|
|
"element-plus",
|
|
"vue3",
|
|
"ts",
|
|
"admin",
|
|
"typescript"
|
|
],
|
|
"license": "MIT"
|
|
}
|