-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.89 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
88
89
90
91
92
93
94
95
{
"name": "jello",
"main": "index.ts",
"author": "John Easton <john@easton.dev>",
"version": "0.0.48",
"scripts": {
"start": "npm run ios",
"prebuild": "expo prebuild -p ios --clean",
"build": "eas build -p ios",
"build:local": "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",
"ios": "expo run:ios --no-build-cache",
"test:unit": "jest",
"test:e2e": "maestro test .maestro",
"commit": "npx git-cz"
},
"dependencies": {
"@jellyfin/sdk": "^0.10.0",
"@react-native-community/slider": "4.5.2",
"@react-navigation/bottom-tabs": "^6.5.16",
"@react-navigation/native": "^6.1.14",
"@react-navigation/native-stack": "^6.8.22",
"@tanstack/react-query": "^5.13.4",
"babel-plugin-react-compiler": "^0.0.0",
"date-fns": "^3.0.6",
"eslint-plugin-react-compiler": "^0.0.0-experimental-b8a7b48-20240830",
"expo": "~51.0.32",
"expo-application": "~5.9.1",
"expo-blur": "~13.0.2",
"expo-build-properties": "~0.12.5",
"expo-crypto": "~13.0.2",
"expo-device": "~6.0.2",
"expo-image": "~1.12.15",
"expo-secure-store": "~13.0.2",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-airplay": "^1.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-awesome-slider": "^2.4.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-image-colors": "^2.4.0",
"react-native-ios-context-menu": "^2.4.3",
"react-native-linear-gradient": "^2.8.3",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-sfsymbols": "^1.2.1",
"react-native-track-player": "^4.1.1",
"react-native-unistyles": "^2.3.0",
"react-native-url-polyfill": "^2.0.0",
"ts-node": "^10.9.2",
"zustand": "^4.4.7"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/react-native": "^12.4.3",
"@types/jest": "^29.5.11",
"@types/react": "~18.2.79",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"git-cz": "^4.3.0",
"husky": "^8.0.3",
"jest": "^29.2.1",
"jest-expo": "~51.0.4",
"prettier": "^3.1.1",
"react-native-testing-library": "^6.0.0",
"react-test-renderer": "18.2.0",
"typescript": "^5.1.3"
},
"overrides": {
"react-refresh": "~0.14.0"
},
"resolutions": {
"react-refresh": "~0.14.0"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"enabled": true
}
}
}
}