mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 03:41:10 +02:00
Migrate figgos from single Expo app to multi-app monorepo structure: - Move mobile app to apps/mobile/ - Add apps/web/ (SvelteKit) and apps/backend/ (NestJS) scaffolds - Add packages/shared/ for shared types and constants - Update root package.json with new dev commands - Temporarily skip type-check (run pnpm install first) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "@figgos/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"
|
|
},
|
|
"dependencies": {
|
|
"@expo/vector-icons": "^14.0.0",
|
|
"@react-native-async-storage/async-storage": "^1.23.1",
|
|
"@react-navigation/native": "^7.0.3",
|
|
"@supabase/supabase-js": "^2.49.4",
|
|
"expo": "^52.0.46",
|
|
"expo-blur": "~14.0.3",
|
|
"expo-constants": "~17.0.8",
|
|
"expo-dev-client": "~5.0.4",
|
|
"expo-dev-launcher": "^5.0.17",
|
|
"expo-image-picker": "^16.0.6",
|
|
"expo-linking": "~7.0.5",
|
|
"expo-router": "~4.0.6",
|
|
"expo-status-bar": "~2.0.1",
|
|
"expo-system-ui": "~4.0.9",
|
|
"expo-web-browser": "~14.0.2",
|
|
"nativewind": "latest",
|
|
"react": "18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"react-native": "0.76.9",
|
|
"react-native-gesture-handler": "~2.20.2",
|
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
"react-native-reanimated": "3.16.2",
|
|
"react-native-safe-area-context": "4.12.0",
|
|
"react-native-screens": "~4.4.0",
|
|
"react-native-svg": "^15.11.2",
|
|
"react-native-web": "~0.19.10"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.0",
|
|
"@types/react": "~18.3.12",
|
|
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
"@typescript-eslint/parser": "^7.7.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-universe": "^12.0.1",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-tailwindcss": "^0.5.11",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "~5.3.3"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "universe/native",
|
|
"root": true
|
|
},
|
|
"private": true
|
|
}
|