ufutx-pc-website/package.json

81 lines
2.3 KiB
JSON
Raw Normal View History

2025-06-09 10:23:45 +08:00
{
"name": "my-website",
"private": true,
"version": "0.0.1",
2025-06-09 10:23:45 +08:00
"type": "module",
2025-07-04 11:29:23 +08:00
"sideEffects": [
"src/style.css",
"src/styles/global.less",
"src/styles/tailwindcss.css",
"element-plus/dist/index.css"
],
2025-06-09 10:23:45 +08:00
"scripts": {
"dev": "vite --host --port 9527",
2025-06-09 10:23:45 +08:00
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"audit": "npm audit --fix",
2025-06-09 18:22:14 +08:00
"lint": "eslint . --ext .vue,.js,.jsx,.ts,.tsx --fix --max-warnings 0",
2025-06-09 10:23:45 +08:00
"lint:check": "eslint . --ext .vue,.js,.jsx,.ts,.tsx",
2025-06-12 11:50:00 +08:00
"i18n:extract": "vue-i18n-extract --path './src/**/*.{vue,js,ts}'",
2025-06-09 18:22:14 +08:00
"prepare": "husky install",
"reinstall": "rm -rf node_modules package-lock.json && npm install"
2025-06-09 10:23:45 +08:00
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
2025-07-04 11:29:23 +08:00
"@vueuse/core": "^13.4.0",
"@vueuse/motion": "^3.0.3",
2025-06-09 10:23:45 +08:00
"axios": "^1.9.0",
2025-06-30 09:26:33 +08:00
"echarts": "^5.6.0",
"element-plus": "^2.10.1",
2025-06-09 10:23:45 +08:00
"pinia": "^2.1.7",
2025-07-04 11:29:23 +08:00
"swiper": "^11.2.10",
2025-06-09 10:23:45 +08:00
"vue": "^3.5.13",
"vue-i18n": "^9.8.0",
2025-06-09 10:23:45 +08:00
"vue-router": "^4.5.1"
},
"devDependencies": {
2025-06-10 16:17:20 +08:00
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@intlify/unplugin-vue-i18n": "^6.0.8",
"@types/node": "^20.19.0",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
2025-06-11 17:47:18 +08:00
"@vitejs/plugin-legacy": "^5.1.0",
2025-06-09 10:23:45 +08:00
"@vitejs/plugin-vue": "^4.2.3",
2025-06-09 17:10:41 +08:00
"@vue/eslint-config-typescript": "12.0.0",
2025-06-09 10:23:45 +08:00
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.14",
2025-07-04 11:29:23 +08:00
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
2025-06-09 17:10:41 +08:00
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.0.0",
2025-06-09 10:23:45 +08:00
"husky": "^8.0.0",
"less": "^4.3.0",
"less-loader": "^12.3.0",
"lint-staged": "^16.1.0",
"postcss": "^8.4.24",
2025-06-09 18:50:07 +08:00
"postcss-px-to-viewport-8-plugin": "^1.2.5",
2025-06-09 10:23:45 +08:00
"prettier": "^3.5.3",
2025-07-11 14:51:12 +08:00
"rollup-plugin-visualizer": "^6.0.3",
"sass": "^1.89.2",
2025-07-04 11:29:23 +08:00
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.4",
2025-06-09 17:10:41 +08:00
"typescript": "5.1.6",
"unplugin-auto-import": "^19.3.0",
2025-07-04 11:29:23 +08:00
"unplugin-element-plus": "^0.10.0",
"unplugin-vue-components": "^28.7.0",
2025-06-11 17:47:18 +08:00
"vite": "^5.4.19",
"vite-plugin-html": "^3.2.2",
"vite-plugin-imagemin": "^0.6.1",
"vite-ssg": "^27.0.1",
"vue-tsc": "1.8.14"
2025-06-09 10:23:45 +08:00
}
}