-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.35 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.35 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
{
"name": "codebuilder-admin",
"main": "expo-router/entry",
"version": "1.0.0",
"private": true,
"scripts": {
"adb:connect": "./scripts/adb-connect.sh",
"start": "npm run prepare && expo start",
"prepare": "node scripts/buildScripts.js",
"prebuild": "npm run prepare",
"eas-build-pre-install": "npm run prepare",
"android": "npm run prepare && expo run:android",
"bump-version": "node scripts/bumpVersion.js",
"ios": "npm run prepare && expo run:ios",
"web": "npm run prebuild && expo start --web",
"test": "jest --watchAll",
"postinstall": "node scripts/notificationSounds.js",
"copy-sounds": "node scripts/notificationSounds.js"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@dev-plugins/react-navigation": "^0.4.0",
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-firebase/app": "^23.8.6",
"@react-native-firebase/auth": "^23.8.6",
"@react-native-firebase/messaging": "^23.8.6",
"@react-native-google-signin/google-signin": "^16.1.1",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-navigation/native": "^7.1.8",
"@react-navigation/native-stack": "^7.3.16",
"@sentry/react-native": "~7.2.0",
"babel-preset-expo": "~54.0.9",
"dotenv": "^17.2.3",
"expo": "~54.0.33",
"expo-background-task": "~1.0.10",
"expo-battery": "^10.0.8",
"expo-build-properties": "^1.0.10",
"expo-camera": "^17.0.10",
"expo-cellular": "8.0.8",
"expo-clipboard": "8.0.8",
"expo-constants": "~18.0.13",
"expo-contacts": "~15.0.11",
"expo-dev-client": "6.0.20",
"expo-device": "8.0.10",
"expo-font": "~14.0.11",
"expo-linking": "8.0.11",
"expo-location": "19.0.8",
"expo-media-library": "18.2.1",
"expo-notifications": "0.32.16",
"expo-router": "~6.0.22",
"expo-sms": "~14.0.8",
"expo-splash-screen": "31.0.13",
"expo-status-bar": "3.0.9",
"expo-system-ui": "6.0.9",
"expo-task-manager": "14.0.9",
"expo-web-browser": "15.0.10",
"firebase": "12.8.0",
"fs-extra": "11.3.3",
"nativewind": "^4.2.1",
"path": "^0.12.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-console-view": "^0.0.21",
"react-native-exception-handler": "^2.10.10",
"react-native-gesture-handler": "~2.28.0",
"react-native-get-random-values": "~1.11.0",
"react-native-maps": "1.20.1",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.2",
"react-native-webview": "13.15.0",
"react-native-worklets": "^0.5.1",
"scheduler": "^0.26.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@react-native-community/cli": "latest",
"@types/react": "~19.1.10",
"babel-plugin-module-resolver": "^5.0.2",
"jest": "~29.7.0",
"jest-expo": "^54.0.16",
"semver": "^7.7.3",
"typescript": "^5.9.3"
},
"workspaces": [
"packages/*"
],
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false,
"exclude": [
"react-native-maps",
"dotenv",
"firebase",
"react-native-exception-handler"
]
}
}
}
}