主要变更: - 项目名称统一为"秒思智能审核平台"(替换 SmartAudit) - 完善 TDD 实施评估与计划 (featuredoc/tdd_plan.md V2.0) - 新增项目现状诊断与可行性分析 - 新增前后端测试策略与工具链配置模板 - 新增 CI/CD 集成方案与 Codecov 配置说明 - 标注所有待创建模板文件 - 新增 GitHub 配置脚本 (scripts/setup-github.sh) - 自动配置分支保护规则 - 验证 GitHub CLI 登录状态 - 更新 TASK-005-C 包含分支保护与 Codecov 配置 - 同步更新 F-51/F-52 功能至所有相关文档 - UI 设计 Logo 统一为"秒思" Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
||
"name": "smartaudit-frontend",
|
||
"version": "1.0.0",
|
||
"description": "秒思智能审核平台(AI 营销内容合规审核平台)- 前端",
|
||
"private": true,
|
||
"scripts": {
|
||
"dev": "next dev",
|
||
"build": "next build",
|
||
"start": "next start",
|
||
"lint": "next lint",
|
||
"test": "vitest",
|
||
"test:coverage": "vitest --coverage"
|
||
},
|
||
"dependencies": {
|
||
"next": "^14.0.0",
|
||
"react": "^18.2.0",
|
||
"react-dom": "^18.2.0",
|
||
"lucide-react": "^0.300.0",
|
||
"zustand": "^4.4.0",
|
||
"axios": "^1.6.0",
|
||
"@uppy/core": "^3.8.0",
|
||
"@uppy/tus": "^3.4.0",
|
||
"@uppy/react": "^3.2.0",
|
||
"socket.io-client": "^4.7.0",
|
||
"clsx": "^2.1.0",
|
||
"tailwind-merge": "^2.2.0"
|
||
},
|
||
"devDependencies": {
|
||
"@types/node": "^20.10.0",
|
||
"@types/react": "^18.2.0",
|
||
"@types/react-dom": "^18.2.0",
|
||
"typescript": "^5.3.0",
|
||
"tailwindcss": "^3.4.0",
|
||
"postcss": "^8.4.0",
|
||
"autoprefixer": "^10.4.0",
|
||
"eslint": "^8.55.0",
|
||
"eslint-config-next": "^14.0.0",
|
||
"vitest": "^1.0.0",
|
||
"@testing-library/react": "^14.1.0",
|
||
"@testing-library/jest-dom": "^6.1.0",
|
||
"@vitejs/plugin-react": "^4.2.0",
|
||
"jsdom": "^23.0.0",
|
||
"@vitest/coverage-v8": "^1.0.0"
|
||
},
|
||
"engines": {
|
||
"node": ">=18.0.0"
|
||
}
|
||
}
|