-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.5 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
94
{
"name": "freeplay",
"version": "1.3.4",
"scripts": {
"preinstall": "node -e \"if(!(process.env.npm_config_user_agent||'').startsWith('yarn')){console.error('\\n[FreePlay] This project uses Yarn (Berry). Run \\'yarn install\\' instead of npm/pnpm.\\n');process.exit(1)}\"",
"start": "yarn expo start",
"android": "yarn expo run:android",
"ios": "yarn expo run:ios",
"tvos": "cross-env LANG=en_US.UTF-8 EXPO_TV=1 yarn expo run:ios --device \"Living Room\"",
"tvos:release": "cross-env LANG=en_US.UTF-8 EXPO_TV=1 yarn expo run:ios --device \"Living Room\" --configuration Release",
"web": "yarn expo start --web",
"prebuild": "yarn expo prebuild --clean",
"prebuild:tvos": "node scripts/prebuild-tvos.js",
"build:android": "node scripts/build-android.js",
"build:amazon": "node scripts/build-android.js amazon",
"build:android:eas": "eas build --platform android --clear-cache",
"build:amazon:eas": "eas build --platform android --profile amazon --clear-cache",
"build:tvos": "yarn prebuild:tvos && cross-env EXPO_TV=1 eas build --platform ios --profile tvos-production",
"submit:tvos": "eas submit --platform ios --profile tvos-production --latest",
"update": "eas update --branch production",
"lint": "eslint --fix src/ App.tsx",
"reset-provisioning": "cross-env EXPO_TV=1 eas credentials --platform ios"
},
"dependencies": {
"@churchapps/content-providers": "^0.7.3",
"@churchapps/helpers": "^1.10.1",
"@expo/metro-runtime": "~6.1.1",
"@react-native-async-storage/async-storage": "1.24.0",
"@react-native-firebase/analytics": "^23.8.4",
"@react-native-firebase/app": "^23.8.4",
"@react-navigation/native": "^7.1.22",
"@react-navigation/stack": "^7.6.8",
"@sentry/react-native": "~7.2.0",
"axios": "^1.13.2",
"expo": "^54.0.20",
"expo-build-properties": "^1.0.10",
"expo-crypto": "^15.0.8",
"expo-device": "~8.0.9",
"expo-localization": "^55.0.13",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"expo-updates": "~29.0.13",
"i18next": "^26.0.8",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^17.0.6",
"react-native": "npm:react-native-tvos@0.81-stable",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "~2.28.0",
"react-native-keep-awake": "^4.0.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-qrcode-svg": "^6.3.21",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-snackbar": "^2.9.0",
"react-native-sound-player": "^0.14.5",
"react-native-svg": "15.12.1",
"react-native-swipe-gestures": "^1.0.5",
"react-native-vector-icons": "^10.3.0",
"react-native-video": "^6.18.0",
"react-native-web": "^0.21.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@react-native-tvos/config-tv": "^0.1.4",
"@types/react": "~19.1.10",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"cross-env": "^10.1.0",
"eslint": "^10.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"react-native-dotenv": "^3.4.11",
"typescript": "~5.9.2"
},
"expo": {
"install": {
"exclude": [
"react-native"
]
}
},
"private": true,
"packageManager": "yarn@4.15.0",
"resolutions": {
"dayjs": "1.11.20"
},
"dependenciesMeta": {
"@sentry/cli": {
"built": true
}
}
}