- 删除所有 JSP 页面(20个文件),前端完全迁移至 Vue 3 SPA - 完善评价系统:ReviewDialog 组件、用户评价历史页、评价状态检查API - 新增通知系统:Notification 实体/仓库/服务/控制器,NotificationCenter 接入真实API - 新增拼团模块:GroupBuying 全套后端和前端页面 - 修复 review check API 参数双重包装导致请求格式错误 - 修复通知 API 路径缺少 /api 前缀和响应格式处理 - MessageListenerService 集成 NotificationService 创建持久化通知 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "flash-sale-frontend",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
"format": "prettier --write src/",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:e2e:ui": "playwright test --ui"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.4.15",
|
|
"vue-router": "^4.2.5",
|
|
"pinia": "^2.1.7",
|
|
"axios": "^1.6.5",
|
|
"element-plus": "^2.4.4",
|
|
"@element-plus/icons-vue": "^2.3.1",
|
|
"dayjs": "^1.11.10",
|
|
"@vueuse/core": "^10.7.1",
|
|
"echarts": "^5.4.3",
|
|
"vue-echarts": "^6.6.8",
|
|
"lodash-es": "^4.17.21",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"xlsx": "^0.18.5",
|
|
"file-saver": "^2.0.5",
|
|
"@types/file-saver": "^2.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.0.3",
|
|
"vite": "^5.0.11",
|
|
"typescript": "^5.3.3",
|
|
"vue-tsc": "^1.8.27",
|
|
"@types/node": "^20.11.5",
|
|
"sass": "^1.70.0",
|
|
"tailwindcss": "^3.4.1",
|
|
"autoprefixer": "^10.4.17",
|
|
"postcss": "^8.4.33",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-vue": "^9.20.1",
|
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
"@typescript-eslint/parser": "^6.19.0",
|
|
"prettier": "^3.2.4",
|
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
"@playwright/test": "^1.52.0"
|
|
}
|
|
}
|