1234567891011121314151617181920212223242526272829 |
- {
- "name": "react-native-permissions-example",
- "version": "0.0.1",
- "private": true,
- "scripts": {
- "clean-modules": "rm -rf ./node_modules/react-native-permissions/{example,node_modules}",
- "clean": "rm -rf ./node_modules ./ios/Pods",
- "postinstall": "yarn clean-modules && yarn pod-install",
- "pod-install": "cd ./ios && pod install && cd ..",
- "start": "react-native start",
- "reinstall": "yarn clean && yarn install"
- },
- "dependencies": {
- "react": "16.9.0",
- "react-native": "0.61.5",
- "react-native-paper": "3.4.0",
- "react-native-permissions": "../",
- "react-native-vector-icons": "6.6.0"
- },
- "devDependencies": {
- "@babel/core": "7.7.7",
- "@babel/runtime": "7.7.7",
- "@types/react": "16.9.17",
- "@types/react-native": "0.60.27",
- "metro-react-native-babel-preset": "0.57.0",
- "typescript": "3.7.4"
- }
- }
|