react-native-navigation的迁移库

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "playground",
  3. "version": "1.0.0",
  4. "private": true,
  5. "scripts": {
  6. "quickinstall": "node ./scripts/quickInstall.js",
  7. "start": "adb reverse tcp:8081 tcp:8081; watchman watch-del-all; react-native start",
  8. "xcode": "open ios/playground.xcodeproj",
  9. "android": "cd android && ./gradlew installDebug",
  10. "uninstall-android": "cd android && ./gradlew uninstallAll",
  11. "xcodeunit": "node ./scripts/unit.ios.js",
  12. "e2e-android": "node ./scripts/e2e.android.js",
  13. "e2e-ios": "node ./scripts/e2e.ios.js"
  14. },
  15. "//": "use react-native-navigation: 2.x.x --> we are manually installing it from a script for quicker workflow. Along with detox and shell-utils",
  16. "dependencies": {},
  17. "babel": {
  18. "env": {
  19. "test": {
  20. "presets": [
  21. "react-native"
  22. ],
  23. "retainLines": true
  24. }
  25. }
  26. }
  27. }