-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "example",
"version": "1.0.0",
"main": "./entry.ts",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"prebuild": "EXPO_NO_GIT_STATUS=1 bunx --cwd=example expo prebuild --clean --bun -p all",
"update:deps": "bunx npm-check-updates -u && bun install -f && bun expo install --fix && bunx expo-doctor@latest"
},
"dependencies": {
"expo": "~54.0.27",
"expo-constants": "^18.0.11",
"expo-dev-client": "~6.0.20",
"expo-linking": "^8.0.10",
"expo-router": "^6.0.17",
"expo-splash-screen": "~31.0.12",
"expo-status-bar": "~3.0.9",
"expo-system-ui": "~6.0.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-calendar-ui": "workspace:*",
"react-native-gesture-handler": "~2.28.0",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.16.0",
"react-native-web": "~0.21.2"
},
"devDependencies": {
"@types/react": "~19.1.10",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-expo": "^54.0.8",
"typescript": "~5.9.3"
},
"overrides": {
"react": "19.1.0",
"react-native": "0.81.5"
}
}