mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:01:08 +02:00
- Add nutriphi-database package with Drizzle ORM - meals and nutrition_goals schemas - PostgreSQL 16 Docker setup - Drizzle Kit configuration - Migrate backend from Supabase to Drizzle - Add DatabaseModule with connection pooling - Add StorageService for Hetzner Object Storage (S3-compatible) - Update MealsService with Drizzle queries - Add /api/meals/upload endpoint for image upload + analysis - Update web app to use backend for uploads - Remove Supabase Storage direct upload - Update uploadService to send images to backend - Remove Supabase dependencies from package.json - Simplify hooks.server.ts - Add Coolify deployment configuration - Dockerfile for production build - docker-compose.coolify.yml 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
68 lines
2.2 KiB
JSON
68 lines
2.2 KiB
JSON
{
|
|
"name": "@nutriphi/mobile",
|
|
"version": "1.0.0",
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"dev": "expo start --dev-client",
|
|
"start": "expo start --dev-client",
|
|
"ios": "expo run:ios",
|
|
"android": "expo run:android",
|
|
"build:dev": "eas build --profile development",
|
|
"build:preview": "eas build --profile preview",
|
|
"build:prod": "eas build --profile production",
|
|
"prebuild": "expo prebuild",
|
|
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
|
|
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
|
|
"web": "expo start --web",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@expo/vector-icons": "^14.0.0",
|
|
"@google/generative-ai": "^0.24.1",
|
|
"@react-native-async-storage/async-storage": "2.1.2",
|
|
"@react-native-clipboard/clipboard": "^1.16.2",
|
|
"@react-navigation/native": "^7.0.3",
|
|
"@supabase/supabase-js": "^2.38.4",
|
|
"expo": "^53.0.11",
|
|
"expo-blur": "^14.1.5",
|
|
"expo-camera": "^16.1.8",
|
|
"expo-constants": "~17.1.4",
|
|
"expo-dev-client": "~5.2.0",
|
|
"expo-dev-launcher": "^5.0.17",
|
|
"expo-file-system": "^18.1.10",
|
|
"expo-image-picker": "^16.1.4",
|
|
"expo-linking": "~7.1.4",
|
|
"expo-location": "^18.1.5",
|
|
"expo-router": "~5.1.0",
|
|
"expo-sqlite": "^15.2.12",
|
|
"expo-status-bar": "~2.2.3",
|
|
"expo-symbols": "~0.4.5",
|
|
"expo-system-ui": "~5.0.6",
|
|
"expo-web-browser": "~14.1.6",
|
|
"nativewind": "latest",
|
|
"react": "19.0.0",
|
|
"react-dom": "19.0.0",
|
|
"react-native": "0.79.3",
|
|
"react-native-context-menu-view": "^1.19.0",
|
|
"react-native-gesture-handler": "~2.24.0",
|
|
"react-native-reanimated": "~3.17.4",
|
|
"react-native-safe-area-context": "5.4.0",
|
|
"react-native-screens": "~4.11.1",
|
|
"react-native-uuid": "^2.0.3",
|
|
"react-native-web": "^0.20.0",
|
|
"zustand": "^4.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.0",
|
|
"@types/react": "~19.0.10",
|
|
"ajv": "^8.12.0",
|
|
"eslint": "^9.25.1",
|
|
"eslint-config-expo": "^9.2.0",
|
|
"eslint-config-prettier": "^10.1.2",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-tailwindcss": "^0.5.11",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "~5.8.3"
|
|
},
|
|
"private": true
|
|
}
|