Skip to content

Instantly share code, notes, and snippets.

View prayaslashkari's full-sized avatar
🎯
Focusing

Prayas Lashkari prayaslashkari

🎯
Focusing
View GitHub Profile
@itinance
itinance / package.json
Last active March 21, 2021 14:12
React Native: package.json: usefully tools for React Native that can be used with "npm run $name"
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"reset": "rm -rf node_modules/ && npm cache clear && watchman watch-del-all && npm i",
"testflight": "fastlane beta",
"android-device": "adb reverse tcp:8081 tcp:8081 && react-native run-android",
"lint": "jslint **.js",
"test": "jest",
"generate-apk": "cd android && ./gradlew assembleRelease && open ./app/build/outputs/apk/",
"install-apk": "cd android && ./gradlew installRelease"
},