feat: initialize mobile blackjack app with authentication and game features

This commit is contained in:
2025-12-20 23:10:06 +01:00
commit 1160c3a713
19 changed files with 1107 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "blackjack-mobile",
"version": "0.1.0",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"@stripe/stripe-react-native": "0.38.3",
"expo": "~51.0.0",
"expo-auth-session": "~5.0.2",
"expo-linear-gradient": "~12.7.2",
"expo-linking": "~6.3.1",
"expo-web-browser": "~13.0.3",
"react": "18.2.0",
"react-native": "0.74.0",
"react-native-safe-area-context": "4.10.8"
}
}