Files
supabase/examples/user-management/expo-user-management/package.json
Katerina Skroumpelou a7563e9fe6 docs(examples): use latest v2 of supabase-js and remove lock files (#44704)
* Use latest 2.x version of `@supabase/supabase-js` in all examples
* Use `latest` version of `@supabase/ssr` in all examples
* Remove lock files from examples
* Add examples lock files in .gitignore

The rationale is:
- Lock files are not actively maintained/updated (or the versions in the
package.json files for that matter)
- They pin an arbitrary version (from the end-user perspective)
- Removes the need to manually update the versions and reinstall
- Consistency

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

## Release Notes

* **Chores**
* Broadened Supabase SDK dependency version constraints across example
projects for greater flexibility with compatible updates
  * Updated some SSR package dependencies to track latest releases
* Added gitignore rules for dependency lock files in example directories

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-04-14 09:24:46 +03:00

37 lines
1.0 KiB
JSON

{
"name": "expo-user-management",
"version": "2.0.0",
"scripts": {
"start": "expo start --dev-client",
"prebuild": "expo prebuild",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"format": "prettier --cache --write \"**/*.{js,json,md,ts,tsx,jsx,css}\""
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@rneui/base": "^5.0.0",
"@rneui/themed": "^5.0.0",
"@supabase/supabase-js": "^2",
"expo": "~55.0.5",
"expo-image-picker": "^55.0.11",
"expo-splash-screen": "~55.0.10",
"expo-status-bar": "~55.0.4",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-safe-area-context": "~5.6.2",
"react-native-url-polyfill": "^3.0.0",
"react-native-web": "~0.21.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@types/react": "~19.2.14",
"@types/react-native": "^0.73.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3"
},
"private": true
}