-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.39 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
{
"name": "@callstack/brownfield-example-expo-app-54",
"main": "./entry.tsx",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "expo lint --no-cache",
"test": "jest --config jest.config.js",
"e2e:build:ios": "detox build --configuration ios.sim.debug",
"e2e:test:ios": "detox test --configuration ios.sim.debug",
"ci:local:e2e:ios": "bash ../../scripts/ci-local-expo54-ios-e2e.sh",
"prebuild": "expo prebuild",
"brownfield:prepare:android:ci": "cd .. && node --experimental-strip-types --no-warnings ./scripts/prepare-android-build-gradle-for-ci.ts ExpoApp54",
"brownfield:package:android": "brownfield package:android --variant release",
"brownfield:publish:android": "brownfield publish:android",
"brownfield:package:ios": "brownfield package:ios --configuration Release",
"eas:stg": "EXPO_TOKEN=$EAS_TOKEN eas update --channel production --message 'testing 1st stg channel update' --platform android"
},
"dependencies": {
"@callstack/brownfield-example-shared-tests": "workspace:^",
"@callstack/brownfield-navigation": "workspace:^",
"@callstack/brownie": "workspace:^",
"@callstack/react-native-brownfield": "workspace:^",
"@expo/vector-icons": "^15.0.3",
"expo": "~54.0.34",
"expo-constants": "~18.0.13",
"expo-font": "~14.0.11",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-linking": "~8.0.12",
"expo-router": "~6.0.23",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-symbols": "~1.0.8",
"expo-system-ui": "~6.0.9",
"expo-updates": "patch:expo-updates@npm%3A29.0.16#~/.yarn/patches/expo-updates-npm-29.0.16-1c5c89eb83.patch",
"expo-web-browser": "~15.0.11",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.16.0",
"react-native-worklets": "0.5.1"
},
"devDependencies": {
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^30.0.0",
"@types/react": "~19.1.10",
"detox": "^20.51.4",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"jest": "^29.7.0",
"jest-expo": "~54.0.16",
"react-test-renderer": "19.1.0",
"typescript": "~5.9.3"
}
}