-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.56 KB
/
package.json
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
{
"name": "jello",
"main": "expo-router/entry",
"author": "John Easton <[email protected]>",
"version": "0.0.69",
"scripts": {
"start": "expo run:ios",
"prebuild": "expo prebuild -p ios --clean",
"build": "eas build -p ios --local",
"tidy": "npm run fmt && npm run lint",
"fmt": "npx prettier . --write",
"lint": "eslint . --fix",
"tidy:check": " npm run fmt:check && npm run lint:check",
"fmt:check": "npx prettier .",
"lint:check": "eslint .",
"prepare": "husky install",
"test:unit": "vitest",
"test:e2e": "maestro test .maestro",
"commit": "npx git-cz",
"android": "expo run:android",
"ios": "expo run:ios"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@jellyfin/sdk": "^0.11.0",
"@react-native-masked-view/masked-view": "0.3.2",
"@tanstack/react-query": "^5.13.4",
"axios": "^1.7.7",
"date-fns": "^3.0.6",
"expo": "^52.0.27",
"expo-application": "~6.0.2",
"expo-blur": "~14.0.3",
"expo-build-properties": "~0.13.2",
"expo-constants": "~17.0.3",
"expo-crypto": "~14.0.2",
"expo-device": "~7.0.2",
"expo-haptics": "~14.0.1",
"expo-image": "~2.0.4",
"expo-linear-gradient": "~14.0.2",
"expo-linking": "~7.0.4",
"expo-router": "~4.0.17",
"expo-secure-store": "~14.0.1",
"expo-splash-screen": "~0.29.21",
"expo-symbols": "~0.2.1",
"react": "18.3.1",
"react-compiler-runtime": "^19.0.0-beta-decd7b8-20250118",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.0",
"react-native": "0.76.6",
"react-native-easing-gradient": "^1.1.1",
"react-native-gesture-handler": "~2.20.2",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-track-player": "^4.1.1",
"react-native-unistyles": "^2.20.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "~18.3.12",
"babel-plugin-react-compiler": "^19.0.0-beta-decd7b8-20250118",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-perfectionist": "^2.8.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-decd7b8-20250118",
"git-cz": "^4.3.0",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"typescript": "^5.1.3",
"vitest": "^3.0.4"
},
"overrides": {
"react-refresh": "~0.14.0"
},
"resolutions": {
"react-refresh": "~0.14.0"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"enabled": true
}
}
}
}