-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "semosan",
"main": "index.js",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"expo-install": "npm install && npx expo install --fix && (echo 'Y' | npx expo prebuild --clean) && npx pod-install",
"android": "expo run:android",
"ios": "expo run:ios",
"ios:device": "expo run:ios --device",
"web": "expo start --web",
"lint": "expo lint",
"tokens": "node scripts/tokens-build-script.mjs --verbose",
"typegen": "node scripts/generate-api-types.mjs",
"eas-build-pre-install": "BUNDLER_VER=$(grep -A1 'BUNDLED WITH' ios/Gemfile.lock | tail -1 | tr -d ' ') && gem install bundler -v \"$BUNDLER_VER\" --no-document 2>/dev/null || true",
"eas-build-post-install": "PROFILES_DIR=\"$HOME/Library/MobileDevice/Provisioning Profiles\"; mkdir -p \"$PROFILES_DIR\"; if [ \"$EAS_BUILD_PROFILE\" = \"production\" ] && [ -n \"$SEMOSAN_WIDGET_PROFILE_PROD\" ]; then echo \"$SEMOSAN_WIDGET_PROFILE_PROD\" | base64 -d > \"$PROFILES_DIR/SemosanWidget.mobileprovision\"; echo 'Widget AppStore profile installed.'; elif [ -n \"$SEMOSAN_WIDGET_PROFILE\" ]; then echo \"$SEMOSAN_WIDGET_PROFILE\" | base64 -d > \"$PROFILES_DIR/SemosanWidget.mobileprovision\"; echo 'Widget AdHoc profile installed.'; fi"
},
"dependencies": {
"@dev-plugins/react-query": "^0.4.0",
"@expo-google-fonts/lexend": "^0.4.1",
"@expo/vector-icons": "^15.0.3",
"@mj-studio/react-native-naver-map": "^2.8.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/netinfo": "11.4.1",
"@react-native-firebase/app": "^24.0.0",
"@react-native-firebase/messaging": "^24.0.0",
"@react-native-kakao/core": "^2.4.5",
"@react-native-kakao/user": "^2.4.5",
"@react-navigation/bottom-tabs": "^7.4.0",
"@react-navigation/elements": "^2.6.3",
"@react-navigation/native": "^7.1.8",
"@sentry/react-native": "~7.2.0",
"@stomp/stompjs": "^7.3.0",
"@tanstack/react-query": "^5.100.9",
"@tokens-studio/sd-transforms": "^2.0.3",
"axios": "^1.15.2",
"babel-preset-expo": "~54.0.10",
"expo": "~54.0.35",
"expo-apple-authentication": "~8.0.8",
"expo-constants": "~18.0.13",
"expo-dev-client": "~6.0.21",
"expo-device": "~8.0.10",
"expo-font": "~14.0.12",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-image-picker": "~17.0.11",
"expo-linear-gradient": "~15.0.8",
"expo-linking": "~8.0.12",
"expo-location": "~19.0.8",
"expo-media-library": "~18.2.1",
"expo-notifications": "~0.32.17",
"expo-router": "~6.0.24",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-symbols": "~1.0.8",
"expo-system-ui": "~6.0.9",
"expo-task-manager": "~14.0.9",
"expo-web-browser": "~15.0.11",
"lottie-react-native": "~7.3.1",
"nativewind": "^4.2.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-view-shot": "4.0.3",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.5.1",
"suncalc": "^1.9.0",
"tailwindcss": "^3.4.19",
"zustand": "^5.0.12"
},
"devDependencies": {
"@types/react": "~19.1.0",
"@types/suncalc": "^1.9.2",
"dotenv": "^17.4.2",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.0.0-insiders.f7d2598",
"react-native-svg-transformer": "^1.5.3",
"style-dictionary": "^5.4.0",
"typescript": "~5.9.2"
},
"private": true
}