暂无描述

package.json 977B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "WebTest",
  3. "version": "0.0.1",
  4. "private": true,
  5. "scripts": {
  6. "start": "node node_modules/react-native/local-cli/cli.js start",
  7. "test": "jest"
  8. },
  9. "dependencies": {
  10. "react": "16.4.1",
  11. "react-native": "0.56.0",
  12. "react-native-webview": "../"
  13. },
  14. "devDependencies": {
  15. "@babel/core": "^7.0.0-beta",
  16. "babel-core": "^7.0.0-beta",
  17. "babel-jest": "23.4.2",
  18. "babel-preset-react-native": "5.0.2",
  19. "detox": "^8.1.4",
  20. "jest": "23.5.0",
  21. "react-test-renderer": "16.4.1"
  22. },
  23. "jest": {
  24. "preset": "react-native"
  25. },
  26. "detox": {
  27. "configurations": {
  28. "ios.sim.debug": {
  29. "binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/WebTest.app",
  30. "build": "xcodebuild -project ios/WebTest.xcodeproj -scheme WebTest -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
  31. "type": "ios.simulator",
  32. "name": "iPhone 6"
  33. }
  34. },
  35. "test-runner": "jest"
  36. }
  37. }