react-native-navigation的迁移库

package.json 996B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "playground",
  3. "version": "1.0.0",
  4. "private": true,
  5. "scripts": {
  6. "postinstall": "rm -rf node_modules/react-native-navigation/node_modules && rm -rf node_modules/react-native-navigation/playground",
  7. "start": "watchman watch-del-all && (adb reverse tcp:8081 tcp:8081 || true) && node node_modules/react-native/local-cli/cli.js start --reset-cache",
  8. "xcode": "open ios/playground.xcodeproj",
  9. "android": "cd android && ./gradlew installDebug",
  10. "e2e": "node ./scripts/e2e.ios.js"
  11. },
  12. "dependencies": {
  13. "react-native": "0.38.0",
  14. "react": "15.4.1",
  15. "react-native-navigation": "file:../"
  16. },
  17. "devDependencies": {
  18. "detox": "4.x.x",
  19. "detox-server": "1.x.x"
  20. },
  21. "detox": {
  22. "session": {
  23. "server": "ws://localhost:8099",
  24. "sessionId": "playground"
  25. },
  26. "ios-simulator": {
  27. "app": "ios/DerivedData/playground/Build/Products/Debug_Detox-iphonesimulator/playground.app",
  28. "device": "iPhone 7, iOS 10.1"
  29. }
  30. }
  31. }