{
  "name": "@binarapps/baca-react-native-template",
  "version": "2.6.2",
  "description": "Expo template ready to develop mobile apps",
  "type": "commonjs",
  "keywords": [
    "expo",
    "template",
    "expo-template",
    "react-native",
    "react-native-template",
    "jest",
    "eslint",
    "prettier"
  ],
  "main": "expo-router/entry",
  "homepage": "https://baca-docs.vercel.app",
  "repository": {
    "type": "git",
    "url": "https://github.com/binarapps/baca-react-native-template.git"
  },
  "bugs": {
    "url": "https://github.com/binarapps/baca-react-native-template/issues"
  },
  "author": "BinarApps",
  "license": "MIT",
  "scripts": {
    "android:dev-client": "IS_DEV=1 npx expo run:android",
    "android": "expo run:android",
    "b": "yarn baca b",
    "baca": "yarn build:baca-cli && node ./scripts/cli/build/scripts/cli",
    "build:baca-cli": "npx tsc -p ./scripts/cli/tsconfig.cli.json",
    "build:production:android": "yarn prepare:production && eas build --platform android --profile production",
    "build:production:ios": "yarn prepare:production && eas build --platform ios --profile production",
    "build:production": "yarn prepare:production && eas build --platform all --profile production",
    "build:qa:android": "yarn prepare:qa && eas build --platform android --profile qa",
    "build:qa:ios": "yarn prepare:qa && eas build --platform ios --profile qa",
    "build:qa": "yarn prepare:qa && eas build --platform all --profile qa",
    "build:staging:android": "yarn prepare:staging && eas build --platform android --profile staging",
    "build:staging:ios": "yarn prepare:staging && eas build --platform ios --profile staging",
    "build:staging": "yarn prepare:staging && eas build --platform all --profile staging",
    "deploy:production:android": "yarn prepare:production && eas build --platform android --profile production --auto-submit --non-interactive",
    "deploy:production:ios": "yarn prepare:production && eas build --platform ios --profile production --auto-submit --non-interactive",
    "deploy:production": "yarn prepare:production && eas build --platform all --profile production --auto-submit --non-interactive",
    "deploy:qa:android": "yarn prepare:qa && eas build --platform android --profile qa --auto-submit --non-interactive",
    "deploy:qa:ios": "yarn prepare:qa && eas build --platform ios --profile qa --auto-submit --non-interactive",
    "deploy:qa": "yarn prepare:qa && eas build --platform all --profile qa --auto-submit --non-interactive",
    "deploy:staging:android": "yarn prepare:staging && eas build --platform android --profile staging --auto-submit --non-interactive",
    "deploy:staging:ios": "yarn prepare:staging && eas build --platform ios --profile staging --auto-submit --non-interactive",
    "deploy:staging": "yarn prepare:staging && eas build --platform all --profile staging --auto-submit --non-interactive",
    "eas-build-pre-install": "base64 --help && echo $ANDROID_FIREBASE_CONFIG | base64 --decode > google-services.json && cat google-services.json && echo $IOS_FIREBASE_CONFIG | base64 --decode > GoogleService-Info.plist && cat GoogleService-Info.plist",
    "g": "yarn baca g",
    "generate:env:production": "scripts/generate_dotenv.sh production",
    "generate:env:qa": "scripts/generate_dotenv.sh qa",
    "generate:env:staging": "scripts/generate_dotenv.sh staging",
    "generate:google-services-config": "./scripts/generate_firebase_config.sh",
    "generate:last:publish": "node ./scripts/generate_last_update_id.js",
    "generate:query": "yarn orval --config ./orval.config.ts",
    "ios:dev-client": "IS_DEV=1 npx expo run:ios",
    "ios": "expo run:ios",
    "install-maestro": "curl -Ls 'https://get.maestro.mobile.dev' | bash",
    "lint:fix": "eslint src --fix",
    "lint": "eslint src && yarn tsc",
    "postinstall": "patch-package && yarn build:baca-cli",
    "prebuild:android": "IS_DEV=1 npx expo prebuild --clean -p android",
    "prebuild:ios": "IS_DEV=1 npx expo prebuild --clean -p ios",
    "prepare:env_file": "cp ./templates/doppler_variables_template.sh ./scripts/doppler_variables.sh",
    "prepare:production": "yarn && yarn generate:env:production && yarn upload:env && yarn generate:google-services-config",
    "prepare:qa": "yarn && yarn generate:env:qa && yarn upload:env && yarn generate:google-services-config",
    "prepare:staging": "yarn && yarn generate:env:staging && yarn upload:env && yarn generate:google-services-config",
    "prepare": "husky install",
    "prettier:write": "prettier --write ./src",
    "start:production": "yarn generate:env:production && IS_DEV=1 IS_EXPO_GO=1 expo start -c -g",
    "start:staging": "yarn generate:env:staging && IS_DEV=1 IS_EXPO_GO=1 expo start -c -g",
    "start": "cross-env IS_DEV=1 IS_EXPO_GO=1 expo start -c -g",
    "start:no-dev": "cross-env IS_DEV=1 IS_EXPO_GO=1 expo start --no-dev --minify -c -g",
    "start:qa": "yarn generate:env:qa && cross-env IS_DEV=1 IS_EXPO_GO=1 expo start -c -g",
    "start:e2e": "yarn generate:env:qa && cross-env IS_MOCK=1 IS_DEV=1 IS_EXPO_GO=1 npx expo start -c -g --no-dev --minify",
    "test:debug": "jest -o --watch --coverage=false",
    "test:final": "jest",
    "test": "jest --watch --coverage=false --changedSince=origin/main",
    "test:e2e": "maestro test .maestro/ -e APP_ID=host.exp.Exponent --debug-output=./e2e-debug-output",
    "typecheck": "eslint .eslintrc.js --fix",
    "update:expo_go": "yarn prepare:qa && cross-env IS_DEV=1 eas update --auto",
    "update:production:android": "yarn prepare:production &&  eas update --branch production --platform android && yarn generate:last:publish production",
    "update:production:ios": "yarn prepare:production && eas update --branch production --platform ios && yarn generate:last:publish production",
    "update:production": "yarn prepare:production && eas update --branch production --message=\"ENV: Production\" && yarn generate:last:publish production",
    "update:qa:android": "yarn prepare:qa && eas update --branch qa --platform android && yarn generate:last:publish qa",
    "update:qa:ios": "yarn prepare:qa && eas update --branch qa --platform ios && yarn generate:last:publish qa",
    "update:qa": "yarn prepare:qa && eas update --branch qa --message=\"ENV: QA\" && yarn generate:last:publish qa",
    "update:staging:android": "yarn prepare:staging && eas update --branch staging --platform android && yarn generate:last:publish staging",
    "update:staging:ios": "yarn prepare:staging && eas update --branch staging --platform ios && yarn generate:last:publish staging",
    "update:staging": "yarn prepare:staging && eas update --branch staging --message=\"ENV: Staging\" && yarn generate:last:publish staging",
    "updateSnapshots": "jest -u --coverage=false",
    "upload:env": "./scripts/upload_env.sh",
    "web:build": "expo export:web",
    "web": "cross-env IS_DEV=1 expo start --web",
    "whoami": "expo whoami"
  },
  "dependencies": {
    "@bacons/react-views": "^1.1.3",
    "@expo/config-plugins": "~9.0.0",
    "@expo/prebuild-config": "~8.0.0",
    "@expo/vector-icons": "^14.0.3",
    "@gorhom/bottom-sheet": "^5.0.6",
    "@gorhom/portal": "^1.0.14",
    "@motify/interactions": "^0.17.1",
    "@motify/skeleton": "^0.18.0",
    "@react-native-async-storage/async-storage": "1.23.1",
    "@react-native-community/netinfo": "11.4.1",
    "@react-native-google-signin/google-signin": "^13.1.0",
    "@react-navigation/bottom-tabs": "^7.2.0",
    "@react-navigation/native": "^7.0.14",
    "@react-navigation/native-stack": "^7.2.0",
    "@react-navigation/stack": "^7.1.1",
    "@shopify/flash-list": "1.7.1",
    "@tanstack/react-query": "^5.64.1",
    "axios": "^1.7.9",
    "core-js": "^3.37.1",
    "expo": "^52.0.25",
    "expo-apple-authentication": "~7.1.3",
    "expo-application": "~6.0.2",
    "expo-asset": "~11.0.2",
    "expo-build-properties": "~0.13.2",
    "expo-clipboard": "~7.0.1",
    "expo-constants": "~17.0.4",
    "expo-crypto": "~14.0.2",
    "expo-dev-client": "~5.0.9",
    "expo-device": "~7.0.2",
    "expo-font": "~13.0.3",
    "expo-haptics": "~14.0.1",
    "expo-image": "~2.0.4",
    "expo-image-picker": "~16.0.4",
    "expo-linear-gradient": "~14.0.2",
    "expo-linking": "~7.0.4",
    "expo-local-authentication": "~15.0.2",
    "expo-localization": "~16.0.1",
    "expo-network": "~7.0.5",
    "expo-notifications": "~0.29.12",
    "expo-router": "~4.0.16",
    "expo-screen-orientation": "~8.0.4",
    "expo-secure-store": "~14.0.1",
    "expo-splash-screen": "~0.29.20",
    "expo-status-bar": "~2.0.1",
    "expo-system-ui": "~4.0.7",
    "expo-updates": "~0.26.12",
    "expo-web-browser": "~14.0.2",
    "i18next": "^24.2.1",
    "jotai": "^2.11.0",
    "jwt-decode": "^4.0.0",
    "moti": "^0.25.3",
    "qs": "^6.14.0",
    "react": "18.3.1",
    "react-dom": "18.3.1",
    "react-hook-form": "^7.51.5",
    "react-i18next": "^15.4.0",
    "react-native": "0.76.6",
    "react-native-gesture-handler": "~2.20.2",
    "react-native-keyboard-aware-scroll-view": "^0.9.5",
    "react-native-notificated": "^0.1.7",
    "react-native-pager-view": "6.5.1",
    "react-native-reanimated": "~3.16.1",
    "react-native-safe-area-context": "4.12.0",
    "react-native-screens": "~4.4.0",
    "react-native-svg": "15.8.0",
    "react-native-web": "~0.19.6",
    "reactotron-react-native": "^5.1.7",
    "sass": "^1.77.2",
    "setimmediate": "^1.0.5",
    "use-debounce": "^9.0.4"
  },
  "devDependencies": {
    "@babel/core": "^7.20.0",
    "@babel/plugin-transform-export-namespace-from": "^7.23.4",
    "@babel/preset-react": "^7.23.3",
    "@eslint/compat": "^1.1.1",
    "@eslint/eslintrc": "^3.1.0",
    "@eslint/js": "^9.9.1",
    "@expo/config": "^10.0.0",
    "@faker-js/faker": "^8.4.1",
    "@testing-library/jest-native": "^5.4.2",
    "@testing-library/react-native": "^12.4.3",
    "@types/jest": "^29.5.3",
    "@types/qs": "^6",
    "@types/react": "~18.3.12",
    "@types/react-test-renderer": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^6.19.1",
    "@typescript-eslint/parser": "^6.19.1",
    "@welldone-software/why-did-you-render": "^7.0.1",
    "babel-loader": "^9.1.3",
    "babel-plugin-module-resolver": "^5.0.0",
    "babel-preset-expo": "~12.0.0",
    "commander": "^12.1.0",
    "cross-env": "^7.0.3",
    "dotenv": "^16.4.1",
    "enquirer": "^2.4.1",
    "eslint": "^9.9.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-config-universe": "^13.0.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-prettier": "^5.2.1",
    "eslint-plugin-react": "^7.35.0",
    "eslint-plugin-react-hooks": "^4.6.2",
    "eslint-plugin-react-native": "^4.1.0",
    "eslint-plugin-react-native-globals": "^0.1.2",
    "fast-text-encoding": "^1.0.6",
    "husky": "^8.0.3",
    "jest": "^29.6.1",
    "jest-expo": "~52.0.3",
    "lint-staged": "^13.2.3",
    "msw": "^2.4.11",
    "orval": "^7.4.1",
    "patch-package": "^7.0.1",
    "prettier": "^3.4.2",
    "pretty-quick": "^4.0.0",
    "react-native-url-polyfill": "^2.0.0",
    "react-test-renderer": "^18.3.1",
    "readline": "^1.3.0",
    "text-encoding-polyfill": "^0.6.7",
    "typescript": "~5.3.3",
    "xmlhttprequest": "^1.8.0"
  },
  "resolutions": {
    "string-width": "4.2.3",
    "wrap-ansi": "^7.0.0"
  },
  "browser": {
    "crypto": false
  },
  "lint-staged": {
    "*.{ts,tsx,js,jsx}": "./node_modules/.bin/eslint src --fix"
  },
  "packageManager": "yarn@4.6.0"
}
