wireguard-dashboard-admin/package.json

80 lines
2.1 KiB
JSON
Raw Normal View History

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",
"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-05-08 14:13:59 +08:00
"@unocss/eslint-config": "^0.51.12",
2023-03-08 10:58:08 +08:00
"@vueuse/core": "^9.13.0",
"@wangeditor/editor": "^5.1.23",
2022-09-28 16:44:01 +08:00
"@wangeditor/editor-for-vue": "^5.1.12",
2023-04-16 21:41:27 +08:00
"@zclzone/utils": "^0.0.8",
2023-03-08 10:58:08 +08:00
"axios": "^1.3.4",
2022-12-31 18:07:05 +08:00
"dayjs": "^1.11.7",
2022-08-27 14:09:32 +08:00
"lodash-es": "^4.17.21",
2023-03-08 10:58:08 +08:00
"md-editor-v3": "^2.9.0",
2022-01-08 17:20:46 +08:00
"mockjs": "^1.1.0",
2023-03-08 10:58:08 +08:00
"pinia": "^2.0.33",
2023-05-13 17:24:43 +08:00
"vite": "^4.3.5",
"vue": "3.3.0-beta.5",
2023-04-13 12:13:32 +08:00
"vue-router": "^4.1.6",
"xlsx": "^0.18.5"
2022-01-08 17:20:46 +08:00
},
"devDependencies": {
2023-03-08 10:58:08 +08:00
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@iconify/json": "^2.2.31",
"@iconify/vue": "^4.1.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.47",
2023-05-07 22:24:46 +08:00
"@zclzone/eslint-config": "^0.0.4",
2023-03-08 10:58:08 +08:00
"chalk": "^5.2.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
2023-03-08 10:58:08 +08:00
"cz-customizable": "^7.0.0",
"dotenv": "^16.0.3",
"esno": "^0.16.3",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
2022-12-31 18:07:05 +08:00
"naive-ui": "^2.34.3",
2023-03-08 10:58:08 +08:00
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.58.3",
2022-12-31 18:17:36 +08:00
"unocss": "0.46.5",
2023-03-08 10:58:08 +08:00
"unplugin-auto-import": "^0.15.1",
"unplugin-icons": "^0.15.3",
"unplugin-vue-components": "^0.24.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",
"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
}
}