Skip to content

Instantly share code, notes, and snippets.

@serdarde
Created October 19, 2025 21:31
Show Gist options
  • Save serdarde/595d13ccd623210fab6011d7e9bd6955 to your computer and use it in GitHub Desktop.
Save serdarde/595d13ccd623210fab6011d7e9bd6955 to your computer and use it in GitHub Desktop.
Expo run scripts
{
"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