react-native-navigation的迁移库

package.json 822B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "playground",
  3. "version": "1.0.0",
  4. "private": true,
  5. "scripts": {
  6. "postinstall": "node ./scripts/postinstall.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. },
  11. "dependencies": {
  12. "react-native": "0.38.0",
  13. "react": "15.4.1",
  14. "react-native-navigation": "file:../"
  15. },
  16. "devDependencies": {
  17. "detox": "4.x.x",
  18. "detox-server": "1.x.x"
  19. },
  20. "detox": {
  21. "session": {
  22. "server": "ws://localhost:8099",
  23. "sessionId": "playground"
  24. },
  25. "ios-simulator": {
  26. "app": "ios/DerivedData/playground/Build/Products/Debug_Detox-iphonesimulator/playground.app",
  27. "device": "iPhone 7, iOS 10.2"
  28. }
  29. }
  30. }