-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.93 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "FreeShowRemote",
"version": "1.1.1",
"description": "A mobile remote app for FreeShow presentation software",
"main": "index.ts",
"license": "MIT",
"author": "Gladson Sam",
"keywords": [
"freeshow",
"presentation",
"remote-control",
"react-native",
"expo",
"mobile"
],
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"build:ios": "eas build --platform ios --profile production-ios",
"build:android": "eas build --platform android --profile production-android-aab",
"build:amazon": "eas build --platform android --profile production-android-apk",
"submit:ios": "eas submit --platform ios",
"submit:android": "eas submit --platform android --profile production-android-aab",
"update": "eas update --channel production",
"update:preview": "eas update --channel preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"version": "node scripts/sync-version.js",
"postinstall": "patch-package"
},
"dependencies": {
"@expo/metro-runtime": "~6.1.2",
"@expo/vector-icons": "^15.0.2",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-tvos/config-tv": "^0.1.4",
"@react-navigation/bottom-tabs": "^7.4.7",
"@react-navigation/native": "^7.1.14",
"@react-navigation/stack": "^7.4.8",
"@sentry/react-native": "^7.7.0",
"bonjour-service": "^1.3.0",
"eas-build-cache-provider": "^16.4.2",
"expo": "^54.0.13",
"expo-blur": "~15.0.7",
"expo-build-properties": "~1.0.9",
"expo-camera": "~17.0.8",
"expo-clipboard": "~8.0.7",
"expo-constants": "^18.0.9",
"expo-font": "~14.0.9",
"expo-keep-awake": "^15.0.7",
"expo-linear-gradient": "~15.0.7",
"expo-localization": "^17.0.7",
"expo-quick-actions": "^6.0.0",
"expo-screen-orientation": "~9.0.7",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"expo-system-ui": "~6.0.7",
"expo-updates": "~29.0.12",
"freeshow-api": "^1.0.5",
"i18next": "^25.6.3",
"react": "19.1.0",
"react-i18next": "^16.3.5",
"react-native": "0.81.4",
"react-native-gesture-handler": "~2.28.0",
"react-native-qrcode-svg": "^6.3.15",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-webview": "13.15.0",
"react-native-zeroconf": "^0.13.8",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@eslint/js": "^9.35.0",
"@types/react": "~19.1.10",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"eslint-config-expo": "~10.0.0",
"patch-package": "^8.0.1",
"prettier": "^3.6.2",
"typescript": "~5.9.2"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
}
},
"private": true
}