react-native-navigation的迁移库

package.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839
  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": "detox test --configuration ios.sim.debug",
  11. "e2e-release": "detox test --configuration ios.sim.release"
  12. },
  13. "dependencies": {
  14. "react": "16.0.0",
  15. "react-native": "0.53.0",
  16. "react-native-animatable": "^1.1.0",
  17. "react-native-navigation": "latest"
  18. },
  19. "devDependencies": {
  20. "detox": "^5.0.0",
  21. "mocha": "^3.4.2"
  22. },
  23. "detox": {
  24. "specs": "test/e2e",
  25. "configurations": {
  26. "ios.sim.debug": {
  27. "binaryPath": "ios/DerivedData/example/Build/Products/Debug-iphonesimulator/example.app",
  28. "type": "ios.simulator",
  29. "name": "iPhone 6s"
  30. },
  31. "ios.sim.release": {
  32. "binaryPath": "ios/DerivedData/example/Build/Products/Release-iphonesimulator/example.app",
  33. "type": "ios.simulator",
  34. "name": "iPhone 6s"
  35. }
  36. }
  37. }
  38. }