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

98 lines
2.7 KiB
JSON
Raw Normal View History

2022-04-20 22:40:26 +08:00
{
"name": "v3-admin-vite",
2022-10-17 17:14:51 +08:00
"version": "3.2.5",
2022-04-23 10:33:30 +08:00
"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",
"lint:eslint": "eslint \"src/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
2022-04-25 19:29:35 +08:00
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"prepare": "husky install"
2022-04-20 22:40:26 +08:00
},
"dependencies": {
2022-10-09 23:12:42 +08:00
"@element-plus/icons-vue": "^2.0.10",
2022-10-17 17:14:51 +08:00
"axios": "^1.1.3",
2022-08-15 16:02:31 +08:00
"dayjs": "^1.11.5",
2022-10-17 17:14:51 +08:00
"element-plus": "^2.2.18",
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",
2022-10-09 23:12:42 +08:00
"pinia": "^2.0.23",
2022-07-01 14:27:01 +08:00
"screenfull": "^6.0.2",
2022-10-17 17:14:51 +08:00
"vue": "^3.2.41",
2022-08-26 21:46:26 +08:00
"vue-router": "^4.1.5"
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",
2022-10-12 17:28:29 +08:00
"@types/node": "18.8.0",
2022-04-21 16:43:59 +08:00
"@types/nprogress": "^0.2.0",
"@types/path-browserify": "^1.0.0",
2022-10-12 17:28:29 +08:00
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
2022-10-08 15:21:19 +08:00
"@vitejs/plugin-vue": "^3.1.2",
"@vue/eslint-config-prettier": "^7.0.0",
2022-09-30 10:00:11 +08:00
"@vue/eslint-config-typescript": "^11.0.2",
2022-10-08 15:21:19 +08:00
"eslint": "^8.25.0",
2022-07-01 14:27:01 +08:00
"eslint-plugin-prettier": "^4.2.1",
2022-10-08 15:21:19 +08:00
"eslint-plugin-vue": "^9.6.0",
2022-07-01 14:27:01 +08:00
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.55.0",
2022-10-08 15:21:19 +08:00
"terser": "^5.15.1",
2022-09-30 10:00:11 +08:00
"typescript": "^4.8.4",
2022-10-09 23:12:42 +08:00
"unocss": "^0.45.29",
2022-10-17 17:14:51 +08:00
"vite": "^3.1.8",
2022-04-21 17:14:30 +08:00
"vite-plugin-svg-icons": "^2.0.1",
2022-09-29 22:38:27 +08:00
"vite-svg-loader": "^3.6.0",
2022-09-13 14:26:49 +08:00
"vue-eslint-parser": "^9.1.0",
2022-10-17 17:14:51 +08:00
"vue-tsc": "^1.0.8"
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
}