react-native-navigation的迁移库

package.json 872B

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