feat: 로그인 성공 시 토큰 저장 및 홈 스크린 이동

This commit is contained in:
2026-01-01 18:43:52 +09:00
parent 7400363466
commit 8829a44b88
10 changed files with 248 additions and 23 deletions

View File

@@ -6,9 +6,19 @@
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
"web": "expo start --web",
"start:local": "EXPO_NO_DOTENV=1 dotenv -e .env.local -- expo start -c",
"start:dev": "EXPO_NO_DOTENV=1 dotenv -e .env.dev -- expo start -c",
"start:prod": "EXPO_NO_DOTENV=1 dotenv -e .env.prod -- expo start -c",
"ios:local": "EXPO_NO_DOTENV=1 dotenv -e .env.local -- expo start -c --ios",
"ios:dev": "EXPO_NO_DOTENV=1 dotenv -e .env.dev -- expo start -c --ios",
"ios:prod": "EXPO_NO_DOTENV=1 dotenv -e .env.prod -- expo start -c --ios",
"android:local": "EXPO_NO_DOTENV=1 dotenv -e .env.local -- expo start -c --android",
"android:dev": "EXPO_NO_DOTENV=1 dotenv -e .env.dev -- expo start -c --android",
"android:prod": "EXPO_NO_DOTENV=1 dotenv -e .env.prod -- expo start -c --android"
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/native": "^7.1.26",
"@react-navigation/native-stack": "^7.9.0",
"expo": "~54.0.30",
@@ -20,6 +30,7 @@
},
"devDependencies": {
"@types/react": "~19.1.0",
"dotenv-cli": "^11.0.0",
"typescript": "~5.9.2"
},
"private": true