{ "name": "garmin-health-lab", "version": "0.1.0", "description": "佳明健康数据分析平台 - React 前端 + Flask 后端", "private": true, "workspaces": [ "client" ], "scripts": { "dev": "concurrently -n backend,client -c blue,green \"npm run dev:backend\" \"npm run dev:client\"", "dev:backend": "cd backend && .venv/bin/python app.py", "dev:client": "npm start --workspace=client", "build": "npm run build --workspace=client", "typecheck": "npm run typecheck --workspace=client", "test": "cd backend && .venv/bin/python -m pytest", "setup:backend": "cd backend && python3 -m venv .venv && .venv/bin/pip install -r requirements-dev.txt" }, "devDependencies": { "concurrently": "^8.2.0" } }