Files
address-verification-app/package.json
Himanshu Kansal 1fd35d0961 Himanshu || AddressGeolocation Routing, Redux, types, service (#88)
* AddressGeolocation Routing, Reducer, types | Geolocation Service  Location Android Permission

* Fix review comments

* Added Address + Geolocation Screen Page (#91)

* Added Address + Geolocation Screen Page

* Fix review comment

* use dev firebase config on qa env
2023-02-22 13:35:44 +05:30

98 lines
3.9 KiB
JSON

{
"name": "AV_APP",
"version": "0.0.4",
"private": true,
"scripts": {
"android:dev": "yarn move:dev && react-native run-android",
"android:qa": "yarn move:qa && react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"prettier:write": "npx prettier --write **/*.{js,jsx,ts,tsx,json} && npx prettier --write *.{js,jsx,ts,tsx,json}",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx ./",
"release:dev": "yarn move:dev && react-native run-android --variant=release && cd android && ./gradlew assembleDebug",
"release:qa": "yarn move:qa && react-native run-android --variant=release && cd android && ./gradlew assembleRelease",
"move:dev": "cp -f ./config/dev/config.js ./src/constants && cp -f ./config/dev/google-services.json ./android/app",
"move:qa": "cp -f ./config/qa/config.js ./src/constants && cp -f ./config/dev/google-services.json ./android/app"
},
"dependencies": {
"@nozbe/watermelondb": "0.24.0",
"@nozbe/with-observables": "1.4.1",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-clipboard/clipboard": "^1.11.1",
"@react-native-community/netinfo": "9.3.7",
"@react-native-firebase/app": "16.4.6",
"@react-native-firebase/auth": "16.5.0",
"@react-native-firebase/crashlytics": "16.5.0",
"@react-native-firebase/database": "16.4.6",
"@react-native-firebase/firestore": "16.5.0",
"@react-navigation/bottom-tabs": "6.5.5",
"@react-navigation/native": "6.1.4",
"@react-navigation/native-stack": "6.9.4",
"@reduxjs/toolkit": "1.9.1",
"@sentry/browser": "7.29.0",
"appcenter": "^4.4.5",
"appcenter-analytics": "^4.4.5",
"appcenter-crashes": "^4.4.5",
"axios": "1.2.1",
"fuzzysort": "2.0.4",
"lottie-react-native": "5.1.4",
"react": "18.1.0",
"react-hook-form": "7.40.0",
"react-native": "0.70.6",
"react-native-code-push": "7.1.0",
"react-native-device-info": "10.3.0",
"react-native-image-picker": "4.10.2",
"react-native-pager-view": "6.1.2",
"react-native-permissions": "3.6.1",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "3.18.2",
"react-native-svg": "13.6.0",
"react-native-tab-view": "3.3.2",
"react-native-toast-message": "2.1.5",
"react-redux": "8.0.5",
"redux": "4.2.0",
"redux-persist": "6.0.0",
"rn-fetch-blob": "0.12.0"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-proposal-decorators": "7.20.7",
"@babel/runtime": "7.12.5",
"@react-native-community/eslint-config": "3.2.0",
"@tsconfig/react-native": "2.0.2",
"@types/jest": "26.0.23",
"@types/react": "18.0.21",
"@types/react-native": "0.70.6",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.37.0",
"babel-jest": "26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"better-sqlite3": "8.0.1",
"eslint": "8.28.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"jest": "26.6.3",
"metro-react-native-babel-preset": "0.72.3",
"miragejs": "0.1.47",
"prettier": "2.8.0",
"react-test-renderer": "18.1.0",
"typescript": "4.8.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}