Skip to content

Instantly share code, notes, and snippets.

@pe-johndpope
Last active February 25, 2022 13:05
Show Gist options
  • Save pe-johndpope/74d330f531d2fed95c997a14a264cb38 to your computer and use it in GitHub Desktop.
Save pe-johndpope/74d330f531d2fed95c997a14a264cb38 to your computer and use it in GitHub Desktop.
{
"name": "pooledenergy",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start --reset-cache",
"android": "react-native run-android",
"android2": "expo run:android --no-build-cache",
"ios": "expo run:ios --no-build-cache",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"deploy:": "eas build -p ios"
},
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"@react-native-async-storage/async-storage": "~1.15.0",
"@react-native-community/datetimepicker": "4.0.0",
"@react-native-community/netinfo": "7.1.3",
"@react-native-firebase/analytics": "^14.5.0",
"@react-native-firebase/app": "^14.5.0",
"@react-native-picker/picker": "2.2.1",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/material-bottom-tabs": "^6.1.1",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"@react-navigation/stack": "^6.1.1",
"@reduxjs/toolkit": "^1.5.1",
"@sentry/cli": "^1.72.2",
"@sentry/react-native": "^3.2.13",
"axios": "^0.26.0",
"expo": "^44.0.0",
"expo-application": "~4.0.1",
"expo-asset": "~8.4.6",
"expo-constants": "~13.0.1",
"expo-file-system": "~13.1.4",
"expo-font": "~10.0.4",
"expo-keep-awake": "~10.0.1",
"expo-modules-autolinking": "0.5.5",
"expo-modules-core": "~0.6.4",
"expo-splash-screen": "~0.14.1",
"expo-status-bar": "~1.2.0",
"expo-updates": "~0.11.6",
"expo-web-browser": "~10.1.0",
"html-entities": "^2.3.2",
"moment": "^2.29.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-android-open-settings": "^1.3.0",
"react-native-app-intro-slider": "^4.0.4",
"react-native-chart-kit": "^6.11.0",
"react-native-charts-wrapper": "^0.5.7",
"react-native-confirmation-code-field": "^7.3.0",
"react-native-copilot": "^2.5.1",
"react-native-device-info": "^8.4.3",
"react-native-dropdown-picker": "^5.1.28",
"react-native-elements": "^3.4.1",
"react-native-gesture-handler": "~2.1.0",
"react-native-google-places-autocomplete": "^2.2.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-modal-datetime-picker": "^13.0.1",
"react-native-onesignal": "^4.3.0",
"react-native-pager-view": "5.4.9",
"react-native-paper": "^4.9.1",
"react-native-permissions": "^3.0.5",
"react-native-popup-menu": "^0.15.11",
"react-native-quick-actions": "^0.3.13",
"react-native-reanimated": "~2.3.1",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.10.1",
"react-native-step-indicator": "^1.0.3",
"react-native-svg": "12.1.1",
"react-native-swiper": "^1.6.0-rc.3",
"react-native-tab-view": "^3.0.1",
"react-native-vector-icons": "^9.1.0",
"react-native-web": "0.17.1",
"react-native-wifi-reborn": "^4.3.8",
"react-native-woocommerce-api": "^1.8.8",
"react-redux": "^7.2.4",
"rn-range-slider": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.16.5",
"@react-native-community/eslint-config": "^3.0.1",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"babel-jest": "^27.5.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.68.0",
"prettier": "^2.4.1",
"react-test-renderer": "17.0.2",
"typescript": "~4.3.5"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "npm run lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
platform :ios, '12.0'
target 'PooledEnergy' do
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => false
)
permissions_path = '../node_modules/react-native-permissions/ios'
pod 'Permission-LocationAccuracy', :path => "#{permissions_path}/LocationAccuracy"
pod 'Permission-LocationAlways', :path => "#{permissions_path}/LocationAlways"
pod 'Permission-LocationWhenInUse', :path => "#{permissions_path}/LocationWhenInUse"
pod 'Permission-Notifications', :path => "#{permissions_path}/Notifications"
target 'PooledEnergyTests' do
inherit! :complete
# Pods for testing
end
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
use_flipper!()
post_install do |installer|
react_native_post_install(installer)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment