f78949c21a
Build & Deploy / build-and-deploy (push) Failing after 9s
Backend (server/): - Fastify + Prisma + PostgreSQL 16 - JWT 인증 (bcrypt) + 카카오 OAuth (/auth/kakao — kapi.kakao.com 호출) - REST API: auth, users, family, policies, claims, score, notifications, diagnosis, consults - 실제 보험점수 알고리즘 (카테고리별 가중치·최소보장 기반) - Multipart 업로드 (영수증/진단서 → 디스크 persistence) - Swagger UI /docs Client: - api/client.ts + api/endpoints.ts (fetch 래퍼 + AsyncStorage 토큰) - 인증 스토어 (hydrate/login/register/kakao/logout) - 로그인/회원가입 화면 + 카카오 버튼 - 홈/내보험/가족/점수/청구 API 연동 (pull-to-refresh) - 보험 추가 모달 + 가족 구성원 추가 모달 - 로그인 전/후 스택 분기 (RootNavigator) Infra: - docker-compose.yml (로컬 Postgres+API) - server/Dockerfile (Prisma migrate deploy + node) - deploy/k8s/postgres.yaml (StatefulSet + 10Gi PVC) - deploy/k8s/api.yaml (Deployment + Ingress api.insurance.junggomoa.com) - CI workflow 확장 (web + api 동시 빌드·배포) - POSTGRES_PASSWORD / JWT_SECRET Gitea Secrets 추가 필요 - 반응형 웹 레이아웃 (max-width 480px 폰 프레임) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "insurance-care",
|
|
"version": "1.0.0",
|
|
"main": "node_modules/expo/AppEntry.js",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo start --android",
|
|
"ios": "expo start --ios",
|
|
"web": "expo start --web"
|
|
},
|
|
"dependencies": {
|
|
"@expo/metro-runtime": "~3.2.1",
|
|
"@expo/vector-icons": "^14.0.2",
|
|
"@react-native-async-storage/async-storage": "1.23.1",
|
|
"@react-navigation/bottom-tabs": "^6.5.20",
|
|
"@react-navigation/native": "^6.1.17",
|
|
"@react-navigation/native-stack": "^6.9.26",
|
|
"expo": "~51.0.0",
|
|
"expo-device": "~6.0.2",
|
|
"expo-font": "~12.0.10",
|
|
"expo-image-picker": "~15.1.0",
|
|
"expo-linear-gradient": "~13.0.2",
|
|
"expo-notifications": "~0.28.0",
|
|
"expo-status-bar": "~1.12.1",
|
|
"react": "18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-native": "0.74.5",
|
|
"react-native-chart-kit": "^6.12.0",
|
|
"react-native-gesture-handler": "~2.16.1",
|
|
"react-native-reanimated": "~3.10.1",
|
|
"react-native-safe-area-context": "4.10.5",
|
|
"react-native-screens": "3.31.1",
|
|
"react-native-svg": "15.2.0",
|
|
"react-native-web": "^0.19.13",
|
|
"zustand": "^4.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.0",
|
|
"@types/react": "~18.2.45",
|
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
"typescript": "~5.3.3"
|
|
},
|
|
"private": true
|
|
}
|