Configure android build settings and dependencies

This commit is contained in:
2026-05-14 19:10:12 +02:00
parent e52f2497e3
commit b3bba8cf38
38 changed files with 917 additions and 1 deletions
+8 -1
View File
@@ -14,11 +14,18 @@
"typecheck": "npm run typecheck -w apps/web && npm run typecheck -w apps/mobile && npm run typecheck -w packages/core && npm run typecheck -w packages/api-client",
"test": "npm run test -w apps/web && npm run test -w apps/mobile",
"dev:mobile": "npm run start -w apps/mobile",
"typecheck:mobile": "npm run typecheck -w apps/mobile"
"typecheck:mobile": "npm run typecheck -w apps/mobile",
"android": "expo run:android",
"ios": "expo run:ios"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"react-test-renderer": "19.1.0"
},
"dependencies": {
"expo": "~54.0.34",
"react": "19.1.0",
"react-native": "0.81.5"
}
}