The stack
Everything in this table ships preinstalled. Other common picks (TanStack Query, Zustand, React Hook Form + Zod, Supabase,
expo-secure-store, image picker, push, camera, charts) are not preinstalled — the agent adds them on demand via add_dependency, which under the hood runs npx expo install so versions stay pinned to SDK 54.
What lands automatically
- File-based routes under
app/(Expo Router) with a starter(tabs)layout app/_layout.tsxwith thelib/mana-preview-bridgeside-effect import that lets the dashboard’s Android DeviceFrame back button drive the iframe — do not delete this import- NativeWind set up so Tailwind utility classes work on every RN component
- Reanimated + Gesture Handler preinitialised so animations and gestures work without extra setup
- TypeScript,
lib/*helpers at the project root (nosrc/directory)
What gets added on demand
The agent adds anything else you need (resolved viaadd_dependency, which routes to npx expo install for SDK-pinned versions):
- Backend —
@supabase/supabase-jswhenever the prompt mentions auth, database, or storage - State / data —
@tanstack/react-query,zustand - Forms —
react-hook-form+zod+@hookform/resolvers - Secure storage —
expo-secure-storefor tokens;react-native-mmkvfor hot read paths - Native modules —
expo-camera,expo-image-picker,expo-location,expo-notifications,expo-local-authentication - Visual extras —
expo-blur,expo-linear-gradient,lottie-react-native - Maps —
react-native-maps
Why pre-installed matters
Three things you get for free:- Metro is up before you finish typing your prompt. No
npm installbetween you and a preview. - Expo Go scans into a running app. The QR code is live the moment the project loads — not after a minute of build setup.
- Smaller, faster prompts. The agent doesn’t waste turns regenerating React Native boilerplate (entry point, navigators, providers). It writes only what varies.
