-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.59 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "learning-app",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "expo lint"
},
"dependencies": {
"@expo/vector-icons": "^14.1.0",
"@notifee/react-native": "^9.1.8",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/netinfo": "11.4.1",
"@react-native-firebase/app": "^22.4.0",
"@react-native-firebase/firestore": "^22.4.0",
"@react-native-firebase/messaging": "^22.4.0",
"@react-native-firebase/storage": "^22.4.0",
"@react-navigation/bottom-tabs": "^7.3.10",
"@react-navigation/native": "^7.1.6",
"@sentry/react-native": "6.14.0",
"axios": "^1.12.2",
"dayjs": "^1.11.13",
"dedent": "^1.6.0",
"expo": "^53.0.27",
"expo-application": "~6.1.5",
"expo-auth-session": "~6.2.1",
"expo-camera": "~16.1.11",
"expo-clipboard": "^7.1.5",
"expo-constants": "~17.1.7",
"expo-crypto": "~14.1.5",
"expo-dev-client": "~5.2.4",
"expo-device": "~7.1.4",
"expo-file-system": "~18.1.11",
"expo-font": "^13.3.2",
"expo-haptics": "~14.1.4",
"expo-image-picker": "~16.1.4",
"expo-linking": "~7.1.7",
"expo-local-authentication": "~16.0.5",
"expo-location": "~18.1.6",
"expo-media-library": "~17.1.7",
"expo-notifications": "~0.31.4",
"expo-print": "~14.1.4",
"expo-router": "~5.1.4",
"expo-secure-store": "~14.2.4",
"expo-sharing": "~13.1.5",
"expo-splash-screen": "~0.30.10",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.10",
"expo-updates": "~0.28.17",
"expo-web-browser": "~14.2.0",
"lottie-react-native": "7.2.2",
"react": "19.0.0",
"react-native": "0.79.6",
"react-native-dropdown-picker": "^5.4.6",
"react-native-flip-card": "^3.5.7",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "~2.24.0",
"react-native-google-mobile-ads": "^15.4.0",
"react-native-image-crop-picker": "^0.51.0",
"react-native-popup-menu": "^0.18.0",
"react-native-progress": "^5.0.1",
"react-native-responsive-fontsize": "^0.5.1",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-size-matters": "^0.4.2",
"react-native-svg": "15.11.2",
"react-native-uuid": "^2.0.3",
"react-native-video": "^6.16.1",
"react-native-web": "~0.20.0",
"react-native-webview": "13.13.5",
"react-native-worklets": "^0.4.1",
"react-native-youtube-iframe": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@react-native-community/cli": "^19.1.0",
"@react-native/metro-config": "^0.80.1",
"@types/node": "^24.0.4",
"@types/react": "~19.0.10",
"@types/react-native-flip-card": "^3.5.7",
"eslint": "^9.25.0",
"eslint-config-expo": "~9.2.0",
"typescript": "~5.8.3"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"react-native-fs",
"react-native-navigation-bar-color",
"react-native-print",
"react-native-app-intro-slider",
"react-native-flip-card",
"@react-native-community/voice",
"dedent",
"firebase",
"firebase-admin",
"i18next-react-native-language-detector",
"mathjs",
"react-devtools",
"react-native-immersive",
"react-native-vector-icons"
],
"listUnknownPackages": false
}
}
}
}