Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ App Store distribution. Full requirements live in `plan/initial-plan.md`.

pnpm workspaces + Turborepo. Three packages, all `private`:

- `packages/app/` — Expo SDK 54 iOS app. Expo Router (`app/` dir), expo-sqlite,
- `packages/app/` — Expo SDK 55 iOS app. Expo Router (`app/` dir), expo-sqlite,
Drizzle ORM, Zustand, react-hook-form, expo-notifications.
- `packages/domain/` — pure-TS domain logic (`type: "module"`). No RN / Expo
imports. Subpath exports: `compare`, `scoring`, `extraction`, `pricing`,
Expand Down
8 changes: 7 additions & 1 deletion packages/app/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@
"supportsTablet": false,
"bundleIdentifier": "com.sugarshin.seam"
},
"plugins": ["expo-router", "expo-sqlite", "expo-image-picker", "expo-secure-store"],
"plugins": [
"expo-router",
"expo-sqlite",
"expo-image-picker",
"expo-secure-store",
"expo-sharing"
],
"experiments": {
"typedRoutes": true
}
Expand Down
43 changes: 22 additions & 21 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,36 +23,37 @@
"@seam/domain": "workspace:*",
"@seam/shared": "workspace:*",
"drizzle-orm": "^0.45.0",
"expo": "~54.0.33",
"expo-application": "~7.0.8",
"expo-constants": "~18.0.13",
"expo-document-picker": "~14.0.8",
"expo-file-system": "~19.0.21",
"expo-image-manipulator": "~14.0.8",
"expo-image-picker": "~17.0.10",
"expo-linking": "~8.0.11",
"expo-notifications": "~0.32.16",
"expo-router": "~6.0.23",
"expo-secure-store": "~15.0.8",
"expo-sharing": "~14.0.8",
"expo-sqlite": "~16.0.10",
"expo-status-bar": "~3.0.9",
"react": "19.1.0",
"expo": "~55.0.18",
"expo-application": "~55.0.14",
"expo-constants": "~55.0.15",
"expo-document-picker": "~55.0.13",
"expo-file-system": "~55.0.17",
"expo-image-manipulator": "~55.0.15",
"expo-image-picker": "~55.0.19",
"expo-linking": "~55.0.14",
"expo-notifications": "~55.0.21",
"expo-router": "~55.0.13",
"expo-secure-store": "~55.0.13",
"expo-sharing": "~55.0.18",
"expo-sqlite": "~55.0.15",
"expo-status-bar": "~55.0.5",
"react": "19.2.0",
"react-hook-form": "^7.54.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "~4.1.7",
"react-native": "0.83.6",
"react-native-gesture-handler": "~2.30.1",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "~4.16.0",
"react-native-screens": "~4.23.0",
"react-native-worklets": "0.7.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@types/react": "19.1.17",
"@types/react": "19.2.14",
"babel-plugin-inline-import": "3.0.0",
"drizzle-kit": "0.31.10",
"eslint": "9.39.4",
"eslint-config-expo": "10.0.0",
"eslint-config-expo": "55.0.0",
"typescript": "5.9.3",
"vitest": "3.2.4"
}
Expand Down
Loading