react-native-navigation的迁移库

package.json 1.0KB

12345678910111213141516171819202122232425262728293031323334353637
  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. "detox": {
  18. "session": {
  19. "server": "ws://localhost:8099",
  20. "sessionId": "playground"
  21. },
  22. "ios-simulator": {
  23. "device": "iPhone 7"
  24. }
  25. },
  26. "babel": {
  27. "env": {
  28. "test": {
  29. "presets": [
  30. "react-native"
  31. ],
  32. "retainLines": true
  33. }
  34. }
  35. }
  36. }