react-native-navigation的迁移库

package.json 595B

1234567891011121314151617
  1. {
  2. "name": "example",
  3. "version": "0.0.1",
  4. "private": true,
  5. "scripts": {
  6. "postinstall": "rm -rf node_modules/react-native-navigation/node_modules && rm -rf node_modules/react-native-navigation/example && rm -rf yarn.lock",
  7. "start": "watchman watch-del-all && (adb reverse tcp:8081 tcp:8081 || true) && node node_modules/react-native/local-cli/cli.js start",
  8. "xcode": "open ios/example.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. }