-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.56 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.56 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
{
"name": "sc2-mobile-app",
"version": "2.0.21",
"description": "BSR Solar Car 2 - Live Telemetry Mobile App",
"main": "expo-router/entry",
"scripts": {
"postinstall": "patch-package",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"doctor": "expo-doctor --verbose",
"export:dev": "node -r ./scripts/node-compat.js ./node_modules/.bin/expo export --platform ios --platform android --dev --output-dir ./dist",
"export:web": "expo export -p web",
"export:web:desktop": "expo export -p web --output-dir desktop/web-dist",
"sync-telemetry-format": "node scripts/build-telemetry-from-format.mjs",
"version:club": "node scripts/sync-club-calendar-version.mjs",
"version:club:dry": "node scripts/sync-club-calendar-version.mjs --dry-run",
"cf:login": "wrangler login",
"cf:deploy:influx-proxy": "wrangler deploy"
},
"dependencies": {
"@clerk/expo": "^3.0.1",
"@expo/vector-icons": "^15.0.3",
"@react-navigation/bottom-tabs": "^7.10.1",
"@react-navigation/native": "^7.1.28",
"d3-interpolate-path": "^2.3.0",
"dotenv": "^17.2.3",
"expo": "~54.0.33",
"expo-asset": "~12.0.12",
"expo-auth-session": "~7.0.10",
"expo-blur": "~15.0.8",
"expo-constants": "^18.0.13",
"expo-font": "~14.0.10",
"expo-haptics": "~15.0.8",
"expo-linear-gradient": "~15.0.8",
"expo-linking": "^8.0.11",
"expo-modules-core": "~3.0.29",
"expo-router": "~6.0.23",
"expo-secure-store": "~15.0.8",
"expo-splash-screen": "^31.0.13",
"expo-status-bar": "~3.0.9",
"expo-web-browser": "~15.0.10",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-maps": "1.20.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.0",
"react-native-webview": "13.15.0",
"victory-native": "^37.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"babel-preset-expo": "^54.0.9",
"expo-doctor": "^1.17.14",
"patch-package": "^8.0.1",
"wrangler": "^4.80.0"
},
"overrides": {
"tar": ">=7.5.11"
},
"engines": {
"node": ">=18",
"npm": "^10.9.2"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
},
"install": {
"exclude": [
"@react-navigation/bottom-tabs",
"@react-navigation/native"
]
}
}
}