-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.9 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
{
"name": "mobileclaw",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start --dev-client",
"start:release": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"prebuild": "npx expo prebuild --clean --platform ios,android",
"android:env": "bash ./scripts/setup-android-env.sh",
"android:check": "bash ./scripts/check-android-env.sh",
"build:android:preview": "eas build --platform android --profile preview",
"build:android:production": "eas build --platform android --profile production",
"build:ios:preview": "eas build --platform ios --profile preview",
"build:ios:production": "eas build --platform ios --profile production"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.24.0",
"@react-navigation/native": "^7.1.3",
"@react-navigation/native-stack": "^7.2.5",
"expo": "~54.0.33",
"expo-av": "^16.0.8",
"expo-camera": "~17.0.10",
"expo-dev-client": "^55.0.19",
"expo-file-system": "~19.0.21",
"expo-secure-store": "^55.0.9",
"expo-status-bar": "~3.0.9",
"fflate": "^0.8.2",
"js-sha256": "^0.11.1",
"pako": "^2.1.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "~4.1.7",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.16.0",
"react-native-tcp-socket": "^6.4.1",
"react-native-vision-camera": "^4.6.1",
"react-native-worklets": "0.8.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"uuid": "^10.0.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@expo/ngrok": "^4.1.3",
"@react-native-community/cli": "^20.1.3",
"@types/react": "~19.1.0",
"@types/uuid": "^10.0.0",
"babel-preset-expo": "^55.0.15",
"eas-cli": "^18.4.0",
"typescript": "~5.9.2",
"ws": "^8.20.0"
},
"private": true
}