Files
vue-ts-example/package.json
严浩 97723c1529
All checks were successful
CI / cache-and-install (push) Successful in 1m28s
chore: Update dependencies for Vue and Vue Router
2024-09-11 11:06:51 +08:00

92 lines
2.6 KiB
JSON

{
"name": "vue-ts",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"prepare": "husky",
"dev+preview": "bunx dev-and-preview@1.0.0"
},
"dependencies": {
"@alova/adapter-axios": "^2.0.7",
"@unhead/vue": "^1.11.2",
"@vant/use": "^1.6.0",
"alova": "^3.0.16",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"jsencrypt": "^3.3.2",
"mitt": "^3.0.1",
"nprogress": "^0.2.0",
"page-stack-vue3": "^2.5.6",
"pinia": "^2.2.2",
"pinia-plugin-persistedstate": "^4.0.1",
"radash": "^12.1.0",
"tdesign-icons-vue-next": "^0.2.6",
"tdesign-mobile-vue": "^1.4.1",
"ts-enum-util": "^4.1.0",
"utils4u": "^2.8.0",
"vant": "^4.9.5",
"vite-plugin-webfont-dl": "^3.9.5",
"vue": "^3.5.4",
"vue-page-stack": "^3.2.0",
"vue-router": "^4.4.4"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.1",
"@iconify/utils": "^2.1.32",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.4",
"@types/nprogress": "^0.2.3",
"@unocss/preset-attributify": "^0.62.3",
"@unocss/preset-rem-to-px": "^0.62.3",
"@unocss/reset": "^0.62.3",
"@vant/auto-import-resolver": "^1.2.1",
"@vitejs/plugin-vue": "^5.1.3",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue-macros/reactivity-transform": "^1.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eruda": "^3.3.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.28.0",
"husky": "^9.1.5",
"jsdom": "^25.0.0",
"less": "^4.2.0",
"lint-staged": "^15.2.10",
"npm-run-all2": "^6.2.2",
"prettier": "^3.3.3",
"typescript": "~5.6.2",
"unocss": "^0.62.3",
"unplugin-auto-import": "^0.18.2",
"unplugin-icons": "^0.19.3",
"unplugin-vue-components": "^0.27.4",
"unplugin-vue-macros": "^2.11.11",
"unplugin-vue-markdown": "^0.26.2",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.3",
"vite-plugin-cdn-import": "^1.0.1",
"vite-plugin-vue-devtools": "^7.4.4",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.6"
},
"pnpm": {},
"lint-staged": {
"src/**/*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
}
}