2022-01-08 17:20:46 +08:00
|
|
|
{
|
|
|
|
"name": "vue-naive-admin",
|
2022-08-27 14:51:08 +08:00
|
|
|
"version": "1.0.0",
|
2022-01-08 17:20:46 +08:00
|
|
|
"scripts": {
|
2023-06-27 17:16:45 +08:00
|
|
|
"build": "vite build",
|
|
|
|
"build:github": "vite build --mode github && esno ./build/script",
|
|
|
|
"build:test": "vite build --mode test",
|
|
|
|
"cz": "cz",
|
2022-01-08 17:20:46 +08:00
|
|
|
"dev": "vite",
|
2022-01-09 18:45:43 +08:00
|
|
|
"lint": "eslint --ext .js,.vue .",
|
|
|
|
"lint:fix": "eslint --fix --ext .js,.vue .",
|
2022-07-15 14:48:40 +08:00
|
|
|
"lint:staged": "lint-staged",
|
2022-07-10 14:02:02 +08:00
|
|
|
"prepare": "husky install",
|
2023-06-27 17:16:45 +08:00
|
|
|
"preview": "vite preview"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,vue}": [
|
|
|
|
"eslint --ext .js,.vue ."
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "node_modules/cz-customizable"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": [
|
|
|
|
"@zclzone",
|
|
|
|
"@unocss",
|
|
|
|
".eslint-global-variables.json"
|
|
|
|
]
|
2022-01-08 17:20:46 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-27 14:25:07 +08:00
|
|
|
"@unocss/eslint-config": "^0.53.6",
|
|
|
|
"@vueuse/core": "^10.2.1",
|
2023-03-08 10:58:08 +08:00
|
|
|
"@wangeditor/editor": "^5.1.23",
|
2022-09-28 16:44:01 +08:00
|
|
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
2023-07-27 14:25:07 +08:00
|
|
|
"axios": "^1.4.0",
|
|
|
|
"dayjs": "^1.11.9",
|
2022-08-27 14:09:32 +08:00
|
|
|
"lodash-es": "^4.17.21",
|
2023-07-27 14:25:07 +08:00
|
|
|
"md-editor-v3": "^4.2.2",
|
2022-01-08 17:20:46 +08:00
|
|
|
"mockjs": "^1.1.0",
|
2023-07-27 14:25:07 +08:00
|
|
|
"pinia": "^2.1.6",
|
|
|
|
"vite": "^4.4.7",
|
|
|
|
"vue": "3.3.4",
|
|
|
|
"vue-router": "^4.2.4",
|
2023-04-13 12:13:32 +08:00
|
|
|
"xlsx": "^0.18.5"
|
2022-01-08 17:20:46 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-27 14:25:07 +08:00
|
|
|
"@commitlint/cli": "^17.6.7",
|
|
|
|
"@commitlint/config-conventional": "^17.6.7",
|
|
|
|
"@iconify/json": "^2.2.95",
|
|
|
|
"@iconify/vue": "^4.1.1",
|
2023-08-03 17:20:21 +08:00
|
|
|
"@unocss/preset-rem-to-px": "^0.54.1",
|
2023-07-27 14:25:07 +08:00
|
|
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
|
|
"@vue/compiler-sfc": "^3.3.4",
|
2023-05-07 22:24:46 +08:00
|
|
|
"@zclzone/eslint-config": "^0.0.4",
|
2023-07-27 14:25:07 +08:00
|
|
|
"chalk": "^5.3.0",
|
2023-03-08 10:58:08 +08:00
|
|
|
"commitizen": "^4.3.0",
|
2022-07-10 14:02:02 +08:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2023-03-08 10:58:08 +08:00
|
|
|
"cz-customizable": "^7.0.0",
|
2023-07-27 14:25:07 +08:00
|
|
|
"dotenv": "^16.3.1",
|
|
|
|
"esno": "^0.17.0",
|
|
|
|
"fs-extra": "^11.1.1",
|
2023-03-08 10:58:08 +08:00
|
|
|
"husky": "^8.0.3",
|
2023-07-27 14:25:07 +08:00
|
|
|
"lint-staged": "^13.2.3",
|
|
|
|
"naive-ui": "^2.34.4",
|
|
|
|
"rollup-plugin-visualizer": "^5.9.2",
|
|
|
|
"sass": "^1.64.1",
|
|
|
|
"unocss": "0.53.6",
|
|
|
|
"unplugin-auto-import": "^0.16.6",
|
|
|
|
"unplugin-icons": "^0.16.5",
|
|
|
|
"unplugin-vue-components": "^0.25.1",
|
2022-08-27 11:04:07 +08:00
|
|
|
"vite-plugin-compression": "^0.5.1",
|
2022-05-15 18:51:57 +08:00
|
|
|
"vite-plugin-html": "^3.2.0",
|
2023-07-28 01:10:01 +08:00
|
|
|
"vite-plugin-mock": "^2.9.6",
|
2022-09-08 15:06:23 +08:00
|
|
|
"vite-plugin-svg-icons": "^2.0.1"
|
2022-01-08 17:20:46 +08:00
|
|
|
}
|
2022-04-08 17:21:48 +08:00
|
|
|
}
|