-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.99 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.99 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
{
"name": "revcel",
"main": "index.js",
"version": "2.6.0",
"scripts": {
"start": "expo start --clear",
"android": "expo run:android",
"ios": "expo run:ios",
"lint": "expo lint",
"deps": "expo install --check",
"build:android": "eas build --platform android --profile development --local",
"prebuild:ios": "expo prebuild --platform ios",
"prebuild:android": "expo prebuild --platform android",
"postinstall": "patch-package",
"eas-build-post-install": "allow-scripts run"
},
"dependencies": {
"@bacons/apple-targets": "^3.0.7",
"@expo/vector-icons": "^15.0.3",
"@react-native-clipboard/clipboard": "^1.16.3",
"@react-native-cookies/cookies": "^6.2.1",
"@react-navigation/bottom-tabs": "^7.10.1",
"@react-navigation/native": "^7.1.28",
"@sentry/react-native": "~7.9.0",
"@shopify/flash-list": "2.2.0",
"@tanstack/query-sync-storage-persister": "^5.90.21",
"@tanstack/react-query": "^5.90.19",
"@tanstack/react-query-persist-client": "^5.90.21",
"date-fns": "^4.1.0",
"expo": "^55.0.0-canary-20260120-bb71700",
"expo-alternate-app-icons": "^7.0.0",
"expo-blur": "16.0.0-canary-20260120-bb71700",
"expo-build-properties": "2.0.0-canary-20260120-bb71700",
"expo-checkbox": "5.0.9-canary-20260120-bb71700",
"expo-constants": "18.1.0-canary-20260120-bb71700",
"expo-dev-client": "6.1.0-canary-20260120-bb71700",
"expo-font": "14.1.0-canary-20260120-bb71700",
"expo-glass-effect": "0.2.0-canary-20260120-bb71700",
"expo-haptics": "15.0.9-canary-20260120-bb71700",
"expo-keep-awake": "15.0.9-canary-20260120-bb71700",
"expo-linear-gradient": "15.0.9-canary-20260120-bb71700",
"expo-linking": "8.0.12-canary-20260120-bb71700",
"expo-notifications": "1.0.0-canary-20260120-bb71700",
"expo-onboarding": "^1.1.2",
"expo-quick-actions": "^6.0.1",
"expo-router": "7.0.0-canary-20260120-bb71700",
"expo-splash-screen": "31.0.14-canary-20260120-bb71700",
"expo-squircle-view": "^1.1.0",
"expo-status-bar": "3.0.10-canary-20260120-bb71700",
"expo-store-review": "9.0.10-canary-20260120-bb71700",
"expo-superwall": "1.0.1",
"expo-symbols": "1.1.0-canary-20260120-bb71700",
"expo-system-ui": "6.0.10-canary-20260120-bb71700",
"expo-web-browser": "15.0.11-canary-20260120-bb71700",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.83.1",
"react-native-context-menu-view": "^1.21.0",
"react-native-easing-gradient": "^1.1.1",
"react-native-gesture-handler": "~2.30.0",
"react-native-keyboard-controller": "1.20.6",
"react-native-mmkv": "^4.1.1",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.20.0",
"react-native-svg": "15.15.1",
"react-native-web": "~0.21.2",
"react-native-webview": "13.16.0",
"react-native-worklets": "0.7.2",
"use-debounce": "^10.1.0",
"zustand": "^5.0.10"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.28.6",
"@biomejs/biome": "^1.9.4",
"@lavamoat/allow-scripts": "^3.4.2",
"@lavamoat/preinstall-always-fail": "^2.1.1",
"@types/lodash": "^4.17.23",
"@types/ms": "^2.1.0",
"@types/react": "^19.2.9",
"eas-cli": "^16.28.0",
"patch-package": "^8.0.1",
"typescript": "^5.9.3"
},
"lavamoat": {
"allowScripts": {
"$root$": true,
"@lavamoat/preinstall-always-fail": false,
"@sentry/react-native>@sentry/cli": true,
"eas-cli>@expo/logger>bunyan>dtrace-provider": true,
"expo-superwall": false,
"@biomejs/biome": false
}
}
}