basic2/package.json

115 lines
3.3 KiB
JSON
Raw Normal View History

2021-08-27 10:13:36 +08:00
{
2023-10-29 23:17:31 +08:00
"type": "module",
2024-03-01 09:02:50 +08:00
"version": "4.6.2",
2024-02-29 14:15:21 +08:00
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
2022-09-26 00:21:50 +08:00
"scripts": {
"dev": "vite",
2023-10-29 23:17:31 +08:00
"build": "vue-tsc && vite build",
"build:test": "vue-tsc && vite build --mode test",
2022-09-26 00:21:50 +08:00
"serve": "http-server ./dist -o",
2023-10-29 23:17:31 +08:00
"serve:test": "http-server ./dist-test -o",
2022-09-26 00:21:50 +08:00
"svgo": "svgo -f src/assets/icons",
"new": "plop",
2023-10-29 23:17:31 +08:00
"generate:icons": "esno ./scripts/generate.icons.ts",
2022-10-21 03:59:06 +08:00
"lint": "npm-run-all -s lint:tsc lint:eslint lint:stylelint",
2023-10-29 23:17:31 +08:00
"lint:tsc": "vue-tsc",
"lint:eslint": "eslint . --cache --fix",
"lint:stylelint": "stylelint \"src/**/*.{css,scss,vue}\" --cache --fix",
2023-10-29 23:17:31 +08:00
"postinstall": "simple-git-hooks",
2022-09-26 00:21:50 +08:00
"preinstall": "npx only-allow pnpm",
"commit": "git cz",
"release": "bumpp"
},
"dependencies": {
2024-02-11 21:06:45 +08:00
"@headlessui/vue": "^1.7.19",
2024-02-04 14:43:49 +08:00
"@imengyu/vue3-context-menu": "^1.3.8",
2024-03-14 11:56:02 +08:00
"@vueuse/core": "^10.9.0",
"@vueuse/integrations": "^10.9.0",
2024-02-04 14:43:49 +08:00
"axios": "^1.6.7",
2023-10-10 09:10:28 +08:00
"dayjs": "^1.11.10",
2024-01-06 21:25:15 +08:00
"defu": "^6.1.4",
2024-03-14 11:56:02 +08:00
"element-plus": "^2.6.1",
2023-07-29 10:15:27 +08:00
"eruda": "^3.0.1",
2024-02-04 14:43:49 +08:00
"floating-vue": "5.2.2",
2024-02-11 21:06:45 +08:00
"hotkeys-js": "^3.13.7",
2022-09-26 00:21:50 +08:00
"lodash-es": "^4.17.21",
2023-07-29 10:15:27 +08:00
"mitt": "^3.0.1",
2022-09-26 00:21:50 +08:00
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
2024-03-14 11:56:02 +08:00
"overlayscrollbars": "^2.6.1",
2024-01-25 09:42:23 +08:00
"overlayscrollbars-vue": "^0.5.7",
2022-09-26 00:21:50 +08:00
"path-browserify": "^1.0.1",
"path-to-regexp": "^6.2.1",
2023-10-17 09:37:58 +08:00
"pinia": "^2.1.7",
2024-03-14 11:56:02 +08:00
"qs": "^6.12.0",
2024-02-11 21:06:45 +08:00
"scule": "^1.3.0",
2023-06-12 21:46:38 +08:00
"vconsole": "^3.15.1",
2024-03-14 11:56:02 +08:00
"vue": "^3.4.21",
2023-10-29 23:17:31 +08:00
"vue-m-message": "^4.0.2",
2024-02-25 16:38:40 +08:00
"vue-router": "^4.3.0"
2022-09-26 00:21:50 +08:00
},
"devDependencies": {
2024-03-14 11:56:02 +08:00
"@antfu/eslint-config": "2.8.1",
"@iconify/json": "^2.2.191",
2023-04-05 23:59:56 +08:00
"@iconify/vue": "^4.1.1",
2023-12-24 00:21:14 +08:00
"@stylistic/stylelint-config": "^1.0.1",
2023-11-25 23:20:24 +08:00
"@types/lodash-es": "^4.17.12",
"@types/mockjs": "^1.0.10",
2023-11-10 10:48:37 +08:00
"@types/nprogress": "^0.2.3",
"@types/path-browserify": "^1.0.2",
2024-03-14 11:56:02 +08:00
"@types/qs": "^6.9.12",
2024-02-11 21:06:45 +08:00
"@unocss/eslint-plugin": "^0.58.5",
2024-03-14 11:56:02 +08:00
"@vitejs/plugin-legacy": "^5.3.2",
2024-02-11 21:06:45 +08:00
"@vitejs/plugin-vue": "^5.0.4",
2023-11-25 23:20:24 +08:00
"@vitejs/plugin-vue-jsx": "^3.1.0",
2024-03-14 11:56:02 +08:00
"archiver": "^7.0.1",
"autoprefixer": "^10.4.18",
2024-01-14 00:06:21 +08:00
"boxen": "^7.1.1",
2024-03-14 11:56:02 +08:00
"bumpp": "^9.4.0",
"cz-git": "^1.9.0",
2024-02-25 16:38:40 +08:00
"eslint": "^8.57.0",
2024-03-14 11:56:02 +08:00
"esno": "^4.7.0",
"fs-extra": "^11.2.0",
2022-09-26 00:21:50 +08:00
"http-server": "^14.1.1",
2024-03-14 11:56:02 +08:00
"inquirer": "^9.2.16",
2024-02-11 21:06:45 +08:00
"lint-staged": "^15.2.2",
2022-10-21 03:59:06 +08:00
"npm-run-all": "^4.1.5",
2024-01-14 00:06:21 +08:00
"picocolors": "^1.0.0",
2023-12-24 00:21:14 +08:00
"plop": "^4.0.1",
2024-03-14 11:56:02 +08:00
"sass": "^1.72.0",
"simple-git-hooks": "^2.10.0",
2024-02-04 14:43:49 +08:00
"stylelint": "^16.2.1",
2024-03-14 11:56:02 +08:00
"stylelint-config-recess-order": "^5.0.0",
2024-01-06 21:25:15 +08:00
"stylelint-config-standard-scss": "^13.0.0",
2022-09-26 00:21:50 +08:00
"stylelint-config-standard-vue": "^1.0.0",
2024-03-14 11:56:02 +08:00
"stylelint-scss": "^6.2.1",
"svgo": "^3.2.0",
2024-03-14 11:56:02 +08:00
"terser": "^5.29.1",
"typescript": "^5.4.2",
2024-02-11 21:06:45 +08:00
"unocss": "^0.58.5",
2024-02-04 14:43:49 +08:00
"unplugin-auto-import": "^0.17.5",
2024-03-14 11:56:02 +08:00
"unplugin-turbo-console": "^1.4.1",
2023-12-04 00:40:16 +08:00
"unplugin-vue-components": "^0.26.0",
2024-03-14 11:56:02 +08:00
"vite": "^5.1.6",
2023-10-10 09:10:28 +08:00
"vite-plugin-banner": "^0.7.1",
2024-03-14 11:56:02 +08:00
"vite-plugin-compression2": "^1.0.0",
2024-01-25 09:42:23 +08:00
"vite-plugin-fake-server": "^2.1.1",
"vite-plugin-pages": "^0.32.0",
2022-09-26 00:21:50 +08:00
"vite-plugin-svg-icons": "^2.0.1",
2024-03-14 11:56:02 +08:00
"vite-plugin-vue-devtools": "^7.0.17",
"vite-plugin-vue-meta-layouts": "^0.4.2",
"vue-tsc": "^2.0.6"
2022-09-26 00:21:50 +08:00
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"preserveUnused": true
},
2022-09-26 00:21:50 +08:00
"config": {
"commitizen": {
"path": "node_modules/cz-git"
2021-08-27 10:13:36 +08:00
}
2022-09-26 00:21:50 +08:00
}
2021-08-27 10:13:36 +08:00
}