Files
iNaturalistReactNative/package.json
Amanda Bullington 6f4e830026 Merge sound recorder, regular camera, nav without evidence, realm updates (#48)
* Build basic sound recorder; flow fixes

* More progress on sound recorder; add metering for visualization

* Flow fixes

* Use logged in user to fetch observations; use modified param to clean up realm code

* Hide tests that aren't passing; add mock for rn-localize

* Code cleanup - remove autolink

* Add member id lookup for projects screen

* Navigate to obs detail with sound recording; don't display photos

* Add basic camera with take photo functionality

* Toggle flash

* Add front camera; camera toggle

* Add pinch to zoom functionality

* Add tap to focus functionality; create focus square component for animation

* Add thumbnails to top of regular camera

* Parse photos from regular camera for ObsEdit

* Nav to obs edit with no photos/sounds

* Revert auth service

* Flow fixes AuthService
2022-02-12 10:40:29 -08:00

99 lines
3.4 KiB
JSON

{
"name": "inaturalistreactnative",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --simulator='iPhone 13'",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@react-native-community/cameraroll": "^4.1.2",
"@react-native-community/netinfo": "^7.1.7",
"@react-native-picker/picker": "^2.2.1",
"@react-navigation/drawer": "^6.1.8",
"@react-navigation/elements": "^1.2.1",
"@react-navigation/native": "^6.0.6",
"@react-navigation/native-stack": "^6.2.4",
"apisauce": "^2.1.2",
"axios": "^0.25.0",
"date-fns": "^2.28.0",
"i18next": "^21.6.6",
"i18next-fluent": "^2.0.0",
"i18next-resources-to-backend": "^1.0.0",
"inaturalistjs": "github:inaturalist/inaturalistjs",
"react": "17.0.2",
"react-i18next": "^11.15.3",
"react-native": "0.66.4",
"react-native-audio-recorder-player": "^3.3.0",
"react-native-config": "^1.4.5",
"react-native-device-info": "^8.4.8",
"react-native-dropdown-picker": "^5.2.3",
"react-native-geocoder": "^0.5.0",
"react-native-geolocation-service": "^5.3.0-beta.4",
"react-native-gesture-handler": "^1.10.3",
"react-native-jwt-io": "^1.0.3",
"react-native-localize": "^2.1.7",
"react-native-maps": "^0.29.3",
"react-native-modal": "^13.0.0",
"react-native-modal-datetime-picker": "^13.0.0",
"react-native-permissions": "^3.1.0",
"react-native-picker-select": "^8.0.4",
"react-native-reanimated": "2.3.1",
"react-native-render-html": "^6.3.0",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.8.0",
"react-native-sensitive-info": "^6.0.0-alpha.9",
"react-native-vision-camera": "^2.12.0",
"realm": "10.20.0-beta.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/react-native": "^9.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-flowtype": "^6.0.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0",
"factoria": "^3.2.2",
"faker": "^5.5.3",
"flow-bin": "^0.149.0",
"fluent_conv": "^3.1.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.0",
"nock": "^13.2.2",
"react-native-accessibility-engine": "^1.0.0",
"react-native-clean-project": "^3.6.7",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2",
"yargs": "^17.3.1"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/tests/jest.setup.js"
],
"setupFilesAfterEnv": [
"<rootDir>/node_modules/react-native-accessibility-engine/src/extend-expect.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?@react-native|react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base)"
],
"automock": false,
"resetMocks": false,
"verbose": true
}
}