package.json 760B

12345678910111213141516171819202122232425
  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-native-community/async-storage": "1.5.1",
  15. "react": "16.8.6",
  16. "react-native": "0.60.5",
  17. "react-native-permissions": "file:../"
  18. },
  19. "devDependencies": {
  20. "@babel/core": "7.6.0",
  21. "@babel/runtime": "7.6.0",
  22. "metro-react-native-babel-preset": "0.56.0"
  23. }
  24. }