-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.53 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "torrclient",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"build:web": "npx expo export -p web",
"build:ios": "eas build -p ios --profile preview",
"build:android": "eas build -p android --profile preview",
"build:prod:ios": "eas build -p ios --profile production",
"build:prod:android": "eas build -p android --profile production",
"docker-push:latest": "npx expo export -p web && docker buildx build --tag=jarvisnexus/torrclient:latest --platform=linux/arm64,linux/amd64,linux/arm/v7 --push .",
"docker-push-tunnel:latest": "npx expo export -p web && docker buildx build -f Dockerfile.tunnel --tag=jarvisnexus/torrclient-tunnel:latest --platform=linux/arm64 --push ."
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/react-native-action-sheet": "^4.1.1",
"@expo/vector-icons": "^15.0.3",
"@react-native-assets/slider": "^11.0.11",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-menu/menu": "^2.0.0",
"@react-navigation/native": "^7.0.0-rc.20",
"expo": "~55.0.9",
"expo-blur": "~55.0.10",
"expo-build-properties": "~55.0.10",
"expo-constants": "~55.0.9",
"expo-dev-client": "~55.0.19",
"expo-font": "~55.0.4",
"expo-glass-effect": "^55.0.9-canary-20260328-2049187",
"expo-linear-gradient": "~55.0.9",
"expo-linking": "~55.0.9",
"expo-router": "~55.0.8",
"expo-screen-orientation": "~55.0.9",
"expo-splash-screen": "~55.0.13",
"expo-status-bar": "~55.0.4",
"expo-system-ui": "~55.0.11",
"expo-updates": "~55.0.16",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-immersive-mode": "^2.0.2",
"react-native-mmkv": "^4.0.1",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-video": "^6.18.0",
"react-native-web": "^0.21.0",
"react-native-webview": "13.16.0",
"react-native-worklets": "0.7.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/react": "~19.1.10",
"jest-expo": "^47.0.1",
"react-test-renderer": "19.1.0",
"typescript": "~5.9.2"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false,
"exclude": []
}
}
}
}