Initial Upload
Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled

This commit is contained in:
2025-12-17 12:32:50 +13:00
commit 3015f48118
471 changed files with 141143 additions and 0 deletions

86
apps/mobile/package.json Normal file
View File

@@ -0,0 +1,86 @@
{
"name": "@tracearr/mobile",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"dev": "expo start",
"lint": "eslint . --ext .ts,.tsx --ignore-pattern '*.config.*' --ignore-pattern '.expo/'",
"typecheck": "tsc --noEmit",
"build:dev": "eas build --profile development --platform all",
"build:dev:ios": "eas build --profile development --platform ios",
"build:dev:android": "eas build --profile development --platform android",
"build:preview": "eas build --profile preview --platform all",
"build:preview:ios": "eas build --profile preview --platform ios",
"build:preview:android": "eas build --profile preview --platform android",
"build:prod": "eas build --profile production --platform all",
"build:prod:ios": "eas build --profile production --platform ios",
"build:prod:android": "eas build --profile production --platform android",
"submit:ios": "eas submit --platform ios",
"submit:android": "eas submit --platform android",
"update": "eas update"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.4.2",
"@expo/metro-runtime": "~6.1.2",
"@expo/vector-icons": "^15.0.3",
"@react-navigation/native": "7.1.22",
"@shopify/react-native-skia": "^2.2.12",
"@tanstack/react-query": "5.60.6",
"@tracearr/shared": "workspace:*",
"axios": "^1.12.0",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"expo": "54.0.25",
"expo-camera": "17.0.9",
"expo-constants": "18.0.10",
"expo-dev-client": "~6.0.18",
"expo-device": "8.0.9",
"expo-font": "^14.0.9",
"expo-image": "3.0.10",
"expo-linking": "8.0.9",
"expo-maps": "^0.12.8",
"expo-notifications": "0.32.13",
"expo-router": "6.0.15",
"expo-secure-store": "15.0.7",
"expo-splash-screen": "31.0.11",
"expo-status-bar": "3.0.8",
"expo-system-ui": "6.0.8",
"expo-task-manager": "~14.0.8",
"expo-updates": "~29.0.13",
"expo-web-browser": "15.0.9",
"lucide-react-native": "^0.555.0",
"nativewind": "5.0.0-preview.2",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-css": "^3.0.1",
"react-native-gesture-handler": "2.28.0",
"react-native-quick-crypto": "^1.0.0",
"react-native-reanimated": "4.1.5",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "4.16.0",
"react-native-svg": "15.15.0",
"react-native-worklets": "0.5.1",
"socket.io-client": "4.8.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.1.17",
"victory-native": "41.20.2",
"zustand": "5.0.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@tailwindcss/postcss": "^4.1.17",
"@types/react": "19.1.17",
"babel-plugin-module-resolver": "5.0.2",
"babel-preset-expo": "^54.0.7",
"postcss": "^8.5.6",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.9.2"
},
"private": true
}