wireguard-dashboard-admin/package.json

75 lines
2.0 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": {
"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",
"build": "vite build",
"build:test": "vite build --mode test",
2022-04-09 22:29:11 +08:00
"build:github": "vite build --mode github && esno ./build/script",
"preview": "vite preview",
"prepare": "husky install",
"cz": "cz"
2022-01-08 17:20:46 +08:00
},
"dependencies": {
2022-05-10 17:17:49 +08:00
"@vueuse/core": "^8.4.2",
2022-09-28 16:44:01 +08:00
"@wangeditor/editor": "^5.1.20",
"@wangeditor/editor-for-vue": "^5.1.12",
2022-01-08 17:20:46 +08:00
"axios": "^0.21.4",
2022-04-02 09:39:16 +08:00
"dayjs": "^1.11.0",
2022-08-27 14:09:32 +08:00
"lodash-es": "^4.17.21",
2022-04-02 09:39:16 +08:00
"md-editor-v3": "^1.11.4",
2022-01-08 17:20:46 +08:00
"mockjs": "^1.1.0",
2022-04-02 09:39:16 +08:00
"pinia": "^2.0.13",
2022-09-08 15:06:23 +08:00
"vue": "^3.2.39",
2022-09-18 15:08:06 +08:00
"vue-router": "^4.1.5"
2022-01-08 17:20:46 +08:00
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
2022-08-27 12:03:58 +08:00
"@iconify/json": "^2.1.99",
"@iconify/vue": "^3.2.1",
2022-02-25 14:06:50 +08:00
"@vitejs/plugin-vue": "^1.10.2",
2022-04-02 09:39:16 +08:00
"@vue/compiler-sfc": "^3.2.31",
"chalk": "^5.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.0",
2022-01-08 17:20:46 +08:00
"dotenv": "^10.0.0",
2022-04-02 09:39:16 +08:00
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
2022-01-08 17:20:46 +08:00
"eslint-plugin-prettier": "^4.0.0",
2022-04-02 09:39:16 +08:00
"eslint-plugin-vue": "^8.5.0",
2022-01-08 17:20:46 +08:00
"esno": "^0.13.0",
2022-04-02 09:39:16 +08:00
"fs-extra": "^10.0.1",
"husky": "^8.0.1",
2022-07-15 14:48:40 +08:00
"lint-staged": "^13.0.3",
2022-09-15 21:44:58 +08:00
"naive-ui": "^2.33.3",
2022-04-02 09:39:16 +08:00
"prettier": "^2.6.1",
2022-10-04 17:07:34 +08:00
"rollup-plugin-visualizer": "^5.8.2",
2022-04-02 09:39:16 +08:00
"sass": "^1.49.10",
2022-10-09 17:56:23 +08:00
"unocss": "^0.45.29",
2022-07-10 22:20:21 +08:00
"unplugin-auto-import": "^0.9.2",
2022-09-15 21:44:58 +08:00
"unplugin-icons": "^0.14.9",
2022-04-02 09:39:16 +08:00
"unplugin-vue-components": "^0.17.21",
2022-09-08 15:06:23 +08:00
"unplugin-vue-define-options": "^0.11.2",
2022-09-15 21:44:58 +08:00
"vite": "^3.1.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"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
2022-07-15 14:48:40 +08:00
},
"lint-staged": {
"*.{js,vue}": [
"eslint --ext .js,.vue ."
]
2022-01-08 17:20:46 +08:00
}
}