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.8.6",
- "react-native": "0.60.5",
- "react-native-paper": "2.16.0",
- "react-native-permissions": "../",
- "react-native-vector-icons": "6.6.0"
- },
- "devDependencies": {
- "@babel/core": "7.5.5",
- "@babel/runtime": "7.5.5",
- "@types/react": "16.9.2",
- "@types/react-native": "0.60.7",
- "metro-react-native-babel-preset": "0.56.0",
- "typescript": "3.5.3"
- }
- }
|