-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.16 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
{
"name": "@callstack/brownfield-example-expo-app-55",
"main": "./entry.tsx",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "expo lint",
"prebuild": "expo prebuild",
"brownfield:prepare:android:ci": "cd .. && node --experimental-strip-types --no-warnings ./scripts/prepare-android-build-gradle-for-ci.ts ExpoApp55",
"brownfield:package:android": "brownfield package:android --module-name brownfieldlib --variant release",
"brownfield:publish:android": "brownfield publish:android --module-name brownfieldlib",
"brownfield:package:ios": "brownfield package:ios --scheme BrownfieldLib --configuration Release"
},
"dependencies": {
"@callstack/brownfield-navigation": "workspace:^",
"@callstack/brownie": "workspace:^",
"@callstack/react-native-brownfield": "workspace:^",
"@expo/vector-icons": "^15.0.2",
"@react-navigation/bottom-tabs": "^7.10.1",
"@react-navigation/elements": "^2.9.10",
"@react-navigation/native": "^7.1.28",
"expo": "~55.0.5",
"expo-constants": "~55.0.7",
"expo-device": "~55.0.9",
"expo-font": "~55.0.4",
"expo-glass-effect": "~55.0.8",
"expo-image": "~55.0.6",
"expo-linking": "~55.0.7",
"expo-router": "~55.0.5",
"expo-splash-screen": "~55.0.10",
"expo-status-bar": "~55.0.4",
"expo-symbols": "~55.0.5",
"expo-system-ui": "~55.0.9",
"expo-web-browser": "~55.0.8",
"react": "19.2.0",
"react-dom": "19.2.0",
"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-worklets": "0.7.2"
},
"devDependencies": {
"@types/react": "~19.2.10",
"eslint": "^9.25.0",
"eslint-config-expo": "~55.0.0",
"typescript": "~5.9.2"
},
"private": true,
"brownie": {
"kotlin": "./android/brownfieldlib/src/main/java/com/callstack/rnbrownfield/demo/expoapp55/Generated/",
"kotlinPackageName": "com.callstack.rnbrownfield.demo.expoapp55"
}
}