-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 719 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 719 Bytes
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
{
"name": "example-expo",
"version": "1.0.0",
"dependencies": {
"expo": "54.0.20",
"expo-status-bar": "~3.0.8",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "~4.1.1",
"react-native-worklets": "0.5.1"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@types/react": "~19.1.10",
"typescript": "~5.9.2"
},
"installConfig": {
"hoistingLimits": "workspaces",
"selfReferences": false
},
"main": "index.ts",
"private": true,
"scripts": {
"android": "expo start --android",
"ios": "expo start --ios",
"start": "expo start --reset-cache",
"web": "expo start --web"
}
}