package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "ReduxExample",
  3. "version": "0.0.1",
  4. "private": true,
  5. "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
  6. "scripts": {
  7. "start": "react-native-scripts start",
  8. "eject": "react-native-scripts eject",
  9. "android": "react-native-scripts android",
  10. "ios": "react-native-scripts ios",
  11. "test": "node node_modules/jest/bin/jest.js",
  12. "debug": "open rndebugger://set-debugger-loc?host=localhost&port=19000"
  13. },
  14. "jest": {
  15. "preset": "jest-expo",
  16. "modulePathIgnorePatterns": [
  17. "/node_modules/.*/react-native/",
  18. "/node_modules/.*/react/"
  19. ],
  20. "transformIgnorePatterns": [
  21. "/node_modules/(?!react-native|react-navigation)/"
  22. ]
  23. },
  24. "dependencies": {
  25. "antd-mobile-rn": "^2.2.1",
  26. "expo": "^27.0.0",
  27. "prop-types": "^15.5.10",
  28. "react": "16.3.1",
  29. "react-native": "^0.55.0",
  30. "react-native-qrcode": "^0.2.7",
  31. "react-navigation": "^2.11.2",
  32. "react-navigation-redux-helpers": "^2.0.0-beta.1",
  33. "react-redux": "^5.0.6",
  34. "redux": "^3.7.2"
  35. },
  36. "devDependencies": {
  37. "babel-jest": "^22.4.1",
  38. "flow-bin": "^0.74.0",
  39. "jest": "^22.1.3",
  40. "jest-expo": "^25.1.0",
  41. "react-native-scripts": "^1.3.1",
  42. "react-test-renderer": "16.0.0"
  43. }
  44. }