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

65 lines
1.8 KiB
JSON
Raw Normal View History

2022-04-20 22:40:26 +08:00
{
"name": "v3-admin-vite",
2024-11-18 14:25:35 +08:00
"type": "module",
2025-02-10 10:56:13 +08:00
"version": "5.0.0-beta.4",
2024-12-02 19:21:56 +08:00
"description": "A crafted admin template, built with Vue3, Vite, TypeScript, Element Plus, and more",
"author": "pany <939630029@qq.com> (https://github.com/pany-ang)",
"repository": "https://github.com/un-pany/v3-admin-vite",
2022-04-20 22:40:26 +08:00
"scripts": {
"dev": "vite",
"build:staging": "vue-tsc && vite build --mode staging",
"build": "vue-tsc && vite build",
2024-11-25 14:28:14 +08:00
"preview": "vite preview",
2024-11-18 14:25:35 +08:00
"lint": "eslint . --fix",
2024-07-15 18:28:55 +08:00
"prepare": "husky",
2023-02-16 14:38:21 +08:00
"test": "vitest"
2022-04-20 22:40:26 +08:00
},
"dependencies": {
2023-12-02 14:40:55 +08:00
"@element-plus/icons-vue": "2.3.1",
"axios": "1.7.9",
"dayjs": "1.11.13",
2025-01-16 16:21:11 +08:00
"element-plus": "2.9.3",
"js-cookie": "3.0.5",
"lodash-es": "4.17.21",
"mitt": "3.0.1",
"normalize.css": "8.0.1",
"nprogress": "0.2.0",
"path-browserify": "1.0.1",
"path-to-regexp": "8.2.0",
2025-01-22 18:39:19 +08:00
"pinia": "2.3.1",
"screenfull": "6.0.2",
2024-11-18 10:54:49 +08:00
"vue": "3.5.13",
"vue-router": "4.5.0",
2024-11-29 19:28:31 +08:00
"vxe-table": "4.6.25"
2022-04-20 22:40:26 +08:00
},
"devDependencies": {
2025-02-06 11:02:19 +08:00
"@antfu/eslint-config": "4.1.1",
"@types/js-cookie": "3.0.6",
2023-12-02 14:40:55 +08:00
"@types/lodash-es": "4.17.12",
2025-02-06 11:02:19 +08:00
"@types/node": "22.13.1",
"@types/nprogress": "0.2.3",
"@types/path-browserify": "1.0.3",
"@vitejs/plugin-vue": "5.2.1",
"@vitejs/plugin-vue-jsx": "4.1.1",
"@vue/test-utils": "2.4.6",
2025-02-06 11:02:19 +08:00
"eslint": "9.19.0",
2025-01-16 16:21:11 +08:00
"eslint-plugin-format": "1.0.1",
2025-02-06 11:02:19 +08:00
"happy-dom": "17.0.0",
"husky": "9.1.7",
2025-02-06 11:02:19 +08:00
"lint-staged": "15.4.3",
2024-09-27 14:07:24 +08:00
"sass": "1.78.0",
2025-01-16 16:21:11 +08:00
"typescript": "5.7.3",
2025-01-22 18:39:19 +08:00
"unocss": "65.4.3",
2025-01-16 16:21:11 +08:00
"unplugin-auto-import": "19.0.0",
"unplugin-svg-component": "0.12.1",
2025-01-16 16:21:11 +08:00
"unplugin-vue-components": "28.0.0",
2025-02-06 11:02:19 +08:00
"vite": "6.1.0",
2023-12-02 14:40:55 +08:00
"vite-svg-loader": "5.1.0",
2025-02-06 11:02:19 +08:00
"vitest": "3.0.5",
2025-01-16 16:21:11 +08:00
"vue-tsc": "2.2.0"
2022-04-21 16:43:59 +08:00
},
"lint-staged": {
2024-11-18 14:25:35 +08:00
"*": "eslint --fix"
}
2022-04-20 23:48:58 +08:00
}