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

79 lines
2.2 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",
2024-11-18 11:31:09 +08:00
"version": "4.5.4",
"description": "A friendly admin template, based on Vue3, Vite, TypeScript, etc",
"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 --noEmit && vite build --mode staging",
"build": "vue-tsc --noEmit && 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",
2024-09-19 19:55:41 +08:00
"axios": "1.7.7",
"dayjs": "1.11.13",
2024-11-18 10:54:49 +08:00
"element-plus": "2.8.8",
"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",
2024-11-04 19:06:48 +08:00
"pinia": "2.2.6",
"screenfull": "6.0.2",
2024-11-18 10:54:49 +08:00
"vue": "3.5.13",
2024-09-19 19:55:41 +08:00
"vue-router": "4.4.5",
2024-11-04 19:06:48 +08:00
"vxe-table": "4.6.23",
"vxe-table-plugin-element": "4.0.4",
2024-10-10 20:44:37 +08:00
"xe-utils": "3.5.31"
2022-04-20 22:40:26 +08:00
},
"devDependencies": {
2024-11-18 14:25:35 +08:00
"@antfu/eslint-config": "3.9.1",
"@types/js-cookie": "3.0.6",
2023-12-02 14:40:55 +08:00
"@types/lodash-es": "4.17.12",
2024-11-18 10:54:49 +08:00
"@types/node": "22.9.0",
"@types/nprogress": "0.2.3",
"@types/path-browserify": "1.0.3",
2024-11-18 10:54:49 +08:00
"@vitejs/plugin-vue": "5.2.0",
"@vitejs/plugin-vue-jsx": "4.1.0",
"@vue/test-utils": "2.4.6",
2024-11-18 14:25:35 +08:00
"eslint": "9.15.0",
2024-11-18 19:40:44 +08:00
"eslint-plugin-format": "0.1.2",
2024-09-19 19:55:41 +08:00
"husky": "9.1.6",
"jsdom": "25.0.1",
2024-09-19 19:55:41 +08:00
"lint-staged": "15.2.10",
2024-09-27 14:07:24 +08:00
"sass": "1.78.0",
2024-10-10 20:44:37 +08:00
"typescript": "5.6.3",
2024-11-18 10:54:49 +08:00
"unocss": "0.64.1",
"vite": "5.4.11",
"vite-plugin-svg-icons": "2.0.1",
2023-12-02 14:40:55 +08:00
"vite-svg-loader": "5.1.0",
2024-11-18 10:54:49 +08:00
"vitest": "2.1.5",
2024-11-04 19:06:48 +08:00
"vue-tsc": "2.1.10"
2022-04-21 16:43:59 +08:00
},
"lint-staged": {
2024-11-18 14:25:35 +08:00
"*": "eslint --fix"
2024-11-25 19:32:16 +08:00
},
"changelogithub": {
"types": {
"feat": { "title": "Feat" },
"fix": { "title": "Fix" },
"perf": { "title": "Perf" },
"refactor": { "title": "Refactor" },
"docs": { "title": "Docs" },
"types": { "title": "Types" },
"test": { "title": "Test" },
"ci": { "title": "CI" },
"revert": { "title": "Revert" },
"chore": { "title": "Chore" }
}
2024-11-18 14:25:35 +08:00
}
2022-04-20 23:48:58 +08:00
}