react-native-navigation的迁移库

package.json 961B

123456789101112131415161718192021222324252627282930313233343536
  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. "xcodeunit": "node ./scripts/unit.ios.js",
  11. "e2e-android": "node ./scripts/e2e.android.js",
  12. "e2e-ios": "node ./scripts/e2e.ios.js"
  13. },
  14. "//": "use react-native-navigation: 2.x.x --> we are manually installing it from a script for quicker workflow. Along with detox and shell-utils",
  15. "dependencies": {},
  16. "detox": {
  17. "session": {
  18. "server": "ws://localhost:8099",
  19. "sessionId": "playground"
  20. },
  21. "ios-simulator": {
  22. "device": "iPhone 7"
  23. }
  24. },
  25. "babel": {
  26. "env": {
  27. "test": {
  28. "presets": [
  29. "react-native"
  30. ],
  31. "retainLines": true
  32. }
  33. }
  34. }
  35. }