-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.38 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.38 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
{
"name": "voltra-example",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"clean": "rm -rf .expo ios",
"start": "expo start --dev-client --clear",
"prebuild": "expo prebuild",
"prebuild:clean": "expo prebuild --clean",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"widget:server": "tsx server/widget-server.tsx",
"harness:ios": "react-native-harness ./__tests__/ios --harnessRunner=ios",
"harness:android": "react-native-harness ./__tests__/android --harnessRunner=android",
"postinstall": "patch-package"
},
"dependencies": {
"@expo-google-fonts/merriweather": "^0.4.2",
"@expo-google-fonts/pacifico": "^0.4.1",
"@expo-google-fonts/press-start-2p": "^0.4.1",
"@expo/vector-icons": "^15.0.2",
"@react-native-harness/ui": "1.0.0-alpha.23",
"@react-navigation/bottom-tabs": "^7.3.10",
"@react-navigation/elements": "^2.3.8",
"@react-navigation/native": "^7.1.6",
"expo": "^55.0.7",
"expo-blur": "~55.0.10",
"expo-build-properties": "~55.0.10",
"expo-constants": "~55.0.8",
"expo-font": "~55.0.4",
"expo-haptics": "~55.0.9",
"expo-image": "~55.0.6",
"expo-linking": "~55.0.7",
"expo-notifications": "~55.0.13",
"expo-router": "~55.0.6",
"expo-sensors": "~55.0.9",
"expo-splash-screen": "~55.0.11",
"expo-status-bar": "~55.0.4",
"expo-symbols": "~55.0.5",
"expo-system-ui": "~55.0.10",
"expo-task-manager": "^55.0.12",
"expo-web-browser": "~55.0.10",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-native": "0.83.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-web": "^0.21.0",
"react-native-webview": "13.16.0",
"react-native-worklets": "~0.7.0",
"voltra": "*"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@react-native-harness/platform-android": "1.0.0-alpha.23",
"@react-native-harness/platform-apple": "1.0.0-alpha.23",
"@types/react": "~19.2.10",
"patch-package": "^8.0.1",
"react-native-harness": "1.0.0-alpha.23",
"tsx": "^4.19.0",
"typescript": "~5.9.2"
},
"private": true,
"expo": {
"install": {
"exclude": [
"react",
"react-dom",
"react-native-worklets"
]
}
}
}