package.json 874B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "react-native-permissions-example",
  3. "version": "0.0.1",
  4. "private": true,
  5. "scripts": {
  6. "clean-modules": "rm -rf ./node_modules/react-native-permissions/{example,node_modules}",
  7. "clean": "rm -rf ./node_modules ./ios/Pods",
  8. "postinstall": "yarn clean-modules && yarn pod-install",
  9. "pod-install": "cd ./ios && pod install && cd ..",
  10. "start": "react-native start",
  11. "reinstall": "yarn clean && yarn install"
  12. },
  13. "dependencies": {
  14. "react": "16.9.0",
  15. "react-native": "0.61.1",
  16. "react-native-paper": "2.16.0",
  17. "react-native-permissions": "../",
  18. "react-native-vector-icons": "6.6.0"
  19. },
  20. "devDependencies": {
  21. "@babel/core": "7.6.2",
  22. "@babel/runtime": "7.6.2",
  23. "@types/react": "16.9.3",
  24. "@types/react-native": "0.60.17",
  25. "metro-react-native-babel-preset": "0.56.0",
  26. "typescript": "3.6.3"
  27. }
  28. }