react-native-navigation的迁移库

package.json 943B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "example",
  3. "version": "0.0.1",
  4. "private": true,
  5. "scripts": {
  6. "postinstall": "node ./scripts/postinstall.js",
  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/example.xcodeproj",
  9. "android": "cd android && ./gradlew installDebug",
  10. "e2e": "node ./scripts/e2e.ios.js"
  11. },
  12. "dependencies": {
  13. "react": "16.0.0-alpha.6",
  14. "react-native": "0.43.3",
  15. "react-native-animatable": "^1.1.0",
  16. "react-native-navigation": "latest"
  17. },
  18. "devDependencies": {
  19. "detox": "4.x.x",
  20. "detox-server": "1.x.x"
  21. },
  22. "detox": {
  23. "session": {
  24. "server": "ws://localhost:8099",
  25. "sessionId": "example"
  26. },
  27. "ios-simulator": {
  28. "app": "ios/DerivedData/example/Build/Products/Debug_Detox-iphonesimulator/example.app",
  29. "device": "iPhone 7, iOS 10.1"
  30. }
  31. }
  32. }