-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.75 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.75 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "seerr-expo",
"main": "expo-router/entry",
"version": "0.10.7",
"scripts": {
"prebuild": "EXPO_TV=0 expo prebuild --clean",
"prebuild:tv": "EXPO_TV=1 expo prebuild --clean",
"android": "EXPO_TV=0 expo run:android",
"android:tv": "EXPO_TV=1 expo run:android",
"ios": "EXPO_TV=0 expo run:ios",
"ios:tv": "EXPO_TV=1 expo run:ios",
"lint": "expo lint",
"format": "prettier --loglevel warn --write --cache .",
"format:check": "prettier --check --cache .",
"prepare": "husky"
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@formatjs/intl-displaynames": "^6.8.9",
"@formatjs/intl-locale": "^4.2.9",
"@formatjs/intl-relativetimeformat": "^11.4.9",
"@futurejj/react-native-visibility-sensor": "^1.3.8",
"@nandorojo/heroicons": "^0.3.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-tvos/config-tv": "^0.1.4",
"@react-navigation/bottom-tabs": "^7.0.0",
"@react-navigation/native": "^7.0.0",
"@reduxjs/toolkit": "^2.5.0",
"@types/validator": "^13.15.10",
"array.prototype.tosorted": "^1.1.4",
"axios": "^1.16.0",
"bowser": "^2.11.0",
"country-flag-icons": "^1.6.13",
"expo": "^54.0.33",
"expo-asset": "~12.0.12",
"expo-blur": "~15.0.8",
"expo-build-properties": "~1.0.10",
"expo-checkbox": "~5.0.8",
"expo-constants": "~18.0.13",
"expo-crypto": "~15.0.8",
"expo-device": "~8.0.10",
"expo-font": "~14.0.11",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-linear-gradient": "~15.0.8",
"expo-linking": "~8.0.11",
"expo-router": "~6.0.23",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-symbols": "~1.0.8",
"expo-system-ui": "~6.0.9",
"expo-web-browser": "~15.0.10",
"formik": "^2.4.6",
"intl-pluralrules": "^2.0.1",
"lodash.uniqby": "^4.7.0",
"nativewind": "^4.1.23",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hot-toast": "^2.6.0",
"react-intl": "^7.0.4",
"react-native": "npm:react-native-tvos@0.81-stable",
"react-native-collapsible": "^1.6.1",
"react-native-crossfade-image": "^1.3.3",
"react-native-element-dropdown": "^2.12.4",
"react-native-gesture-handler": "~2.28.0",
"react-native-keyboard-controller": "^1.20.7",
"react-native-popover-view": "^6.0.1",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.0",
"react-native-webview": "13.15.0",
"react-native-worklets": "0.5.1",
"react-redux": "^9.2.0",
"relative-time-format": "^1.1.6",
"swr": "^2.3.6",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^3.4.16",
"validator": "^13.15.26",
"yup": "^0.32.11",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/lodash.uniqby": "^4.7.9",
"@types/react": "~19.1.10",
"eslint": "^9.39.2",
"eslint-config-expo": "^10.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"typescript": "~5.9.2"
},
"overrides": {
"react-native": "npm:react-native-tvos@0.81-stable",
"react-native-svg": "15.12.1"
},
"lint-staged": {
"**/*.{ts,tsx,js}": [
"prettier --write"
],
"**/*.{json,md,css}": [
"prettier --write"
]
},
"expo": {
"install": {
"exclude": [
"react-native"
]
}
},
"engines": {
"node": "^22.0.0"
}
}