-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.04 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.04 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
{
"name": "react-native-ease-example",
"version": "0.0.1",
"private": true,
"main": "expo-router/entry",
"scripts": {
"android": "expo run:android",
"ios": "expo run:ios",
"start": "expo start",
"prebuild": "expo prebuild",
"build:android": "expo prebuild --platform android --clean && cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "expo prebuild --platform ios --clean && xcodebuild -workspace ios/EaseExample.xcworkspace -scheme EaseExample -configuration Debug -sdk iphonesimulator -arch x86_64 build"
},
"dependencies": {
"@expo/metro-runtime": "~55.0.6",
"expo": "~55.0.0",
"expo-constants": "^55.0.7",
"expo-linking": "^55.0.7",
"expo-router": "^55.0.5",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.0",
"react-native-reanimated": "^4.2.2",
"react-native-safe-area-context": "^5.7.0",
"react-native-screens": "^4.24.0",
"react-native-web": "^0.21.0",
"react-native-worklets": "^0.7.4"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.83.0",
"@react-native/metro-config": "0.83.0",
"@react-native/typescript-config": "0.83.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19",
"@types/react-native-web": "^0",
"babel-preset-expo": "~55.0.8",
"react-native-builder-bob": "^0.40.18",
"react-native-monorepo-config": "^0.3.3"
},
"engines": {
"node": ">=20"
},
"resolutions": {
"@react-native/gradle-plugin": "0.83.0"
},
"reanimated": {
"staticFeatureFlags": {
"ANDROID_SYNCHRONOUSLY_UPDATE_UI_PROPS": true,
"IOS_SYNCHRONOUSLY_UPDATE_UI_PROPS": true,
"USE_SYNCHRONIZABLE_FOR_MUTABLES": true,
"DISABLE_COMMIT_PAUSING_MECHANISM": true
}
}
}