wireguard-dashboard-admin/package.json

73 lines
1.9 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-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",
"vue": "^3.2.31",
2022-05-20 18:31:21 +08:00
"vue-router": "^4.0.15"
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-08-28 19:37:23 +08:00
"naive-ui": "^2.32.2",
2022-04-02 09:39:16 +08:00
"prettier": "^2.6.1",
2022-04-19 21:50:19 +08:00
"rollup-plugin-visualizer": "^5.6.0",
2022-04-02 09:39:16 +08:00
"sass": "^1.49.10",
2022-07-08 22:35:55 +08:00
"unocss": "^0.43.2",
2022-07-10 22:20:21 +08:00
"unplugin-auto-import": "^0.9.2",
"unplugin-icons": "^0.14.1",
2022-04-02 09:39:16 +08:00
"unplugin-vue-components": "^0.17.21",
2022-08-27 14:22:09 +08:00
"vite": "^3.0.9",
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-08-27 11:46:34 +08:00
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-setup-extend-plus": "^0.1.0"
},
"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
}
}