Created
October 19, 2025 21:31
-
-
Save serdarde/595d13ccd623210fab6011d7e9bd6955 to your computer and use it in GitHub Desktop.
Expo run scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "scripts": { | |
| "start": "expo start --dev-client", | |
| "android": "expo run:android", | |
| "ios": "expo run:ios", | |
| "eas-build-pre-install": "npm config set legacy-peer-deps true", | |
| "eas:prebuild:clean": "npx expo prebuild --clean", | |
| "eas:and:dev": "eas build -p android -e development --local", | |
| "eas:and:preview": "eas build -p android -e preview --local", | |
| "eas:and:prod": "eas build -p android -e production --local", | |
| "eas:ios:dev": "eas build -p ios -e development --local", | |
| "eas:ios:test:flight": "eas build --platform ios -e production --auto-submit", | |
| "eas:ios:prod": "eas build -p ios -e production", | |
| "eas:prod": "eas build -p all -e production" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment