react-native-navigation的迁移库

package.json 906B

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