-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (42 loc) · 1.14 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
{
"name": "keyboard-controller-demo",
"private": true,
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start",
"startc": "expo start --reset-cache",
"prebuild": "expo prebuild --clean",
"build:release": "cd android && gradlew assembleRelease",
"build:debug": "cd android && gradlew assembleDebug",
"android": "expo run:android --device",
"ios": "expo run:ios"
},
"expo": {
"install": {
"exclude": [
"react-native-gesture-handler",
"react-native-reanimated",
"react-native-keyboard-controller",
"react-native-worklets"
]
}
},
"dependencies": {
"expo": "^55.0.8",
"expo-dev-client": "~55.0.18",
"react": "19.2.0",
"react-native": "0.83.2",
"react-native-gesture-handler": "^3.0.0-beta.2",
"react-native-keyboard-controller": "^1.21.2",
"react-native-reanimated": "^4.2.3",
"react-native-safe-area-context": "~5.6.2",
"react-native-worklets": "^0.8.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@types/react": "~19.2.10",
"babel-preset-expo": "~55.0.8",
"typescript": "^5.9.3"
}
}