Set up Expo SDK 56 project with TypeScript and Expo Router (file-based). Backend: - Full Convex schema (users, accounts, sessions, ads, categories, reviews, chats, messages, posts) deployed to self-hosted instance - Custom email/password auth with SHA-256 hashing via Convex actions - Query/mutation scaffolds for all domain tables - Convex environment variables configured on backend App structure: - Root layout with ConvexProvider, ThemeProvider, AuthContext - (auth) group: login and register screens (Macedonian UI) with role selection (handyman/customer) - (tabs) group: 5 tabs (Home, Explore, Posts, Chat, Profile) each with nested Stack layouts - Placeholder detail screens for ad, post, chat, review flows - 404 not-found screen in Macedonian UI primitives (components/ui/): - Button (4 variants), Input, Card, Loading, Avatar, Rating, Badge - ThemeProvider with light/dark palette via React context All user-facing strings in Macedonian. Code identifiers in English. TypeScript passes with zero errors.
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"name": "mojmajstor",
|
|
"version": "1.0.0",
|
|
"main": "expo-router/entry",
|
|
"scripts": {
|
|
"start": "expo start",
|
|
"android": "expo start --android",
|
|
"ios": "expo start --ios",
|
|
"web": "expo start --web",
|
|
"convex:dev": "convex dev --url https://backend-onhwnh06p0g3976vl34yx18v.testbed.mk:3210",
|
|
"convex:deploy": "convex deploy --url https://backend-onhwnh06p0g3976vl34yx18v.testbed.mk:3210"
|
|
},
|
|
"dependencies": {
|
|
"@expo/vector-icons": "^15.0.2",
|
|
"convex": "^1.39.1",
|
|
"expo": "~56.0.7",
|
|
"expo-constants": "~56.0.16",
|
|
"expo-haptics": "~56.0.3",
|
|
"expo-image": "~56.0.9",
|
|
"expo-image-picker": "~56.0.14",
|
|
"expo-linking": "~56.0.13",
|
|
"expo-location": "~56.0.14",
|
|
"expo-router": "~56.2.8",
|
|
"expo-splash-screen": "~56.0.10",
|
|
"expo-status-bar": "~56.0.4",
|
|
"react": "19.2.3",
|
|
"react-native": "0.85.3",
|
|
"react-native-maps": "1.27.2",
|
|
"react-native-safe-area-context": "~5.7.0",
|
|
"react-native-screens": "4.25.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "~19.2.2",
|
|
"typescript": "~6.0.3"
|
|
},
|
|
"private": true
|
|
}
|