Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. {
  2. "name": "AppName",
  3. "version": "0.0.1",
  4. "private": true,
  5. "scripts": {
  6. "start": "node node_modules/react-native/local-cli/cli.js start",
  7. "test": "jest",
  8. "clear-watch": "watchman watch-del-all && watchman shutdown-server",
  9. "ios-bundle": "react-native bundle --dev false --entry-file index.ios.js --bundle-output ios/main.jsbundle --platform ios",
  10. "ios-build": "react-native run-ios --configuration Release",
  11. "android-clean": "cd android && ./gradlew clean",
  12. "android-build-debug": "cd android/ && ./gradlew assembleDebug",
  13. "android-release": "cd android && ./gradlew assembleRelease --no-daemon",
  14. "android-bundle": "react-native bundle --platform android --dev false --entry-file ./index.js --bundle-output ./android/app/src/main/assets/index.bundle --sourcemap-output ./android/app/src/main/assets/index.map --assets-dest ./android/app/src/main/res/"
  15. },
  16. "dependencies": {
  17. "react": "16.6.3",
  18. "react-native": "0.58.4"
  19. },
  20. "devDependencies": {
  21. ...
  22. },
  23. "jest": {
  24. "preset": "react-native"
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement