-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.81 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
{
"name": "cron",
"version": "0.9.0",
"private": true,
"type": "module",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"prebuild": "expo prebuild",
"expo:doctor": "pnpm dlx expo-doctor@latest",
"typecheck": "tsc --noEmit",
"test": "jest",
"lint": "ultracite check",
"lint:fix": "ultracite fix",
"build:development:android:local": "eas build --profile development --platform android --local",
"build:preview:android:local": "eas build --profile preview --platform android --local",
"build:production:android:local": "eas build --profile production --platform android --local",
"nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android",
"preinstall": "npx only-allow pnpm",
"prepare": "lefthook install"
},
"dependencies": {
"@gorhom/bottom-sheet": "^5.2.8",
"@rn-primitives/dropdown-menu": "^1.2.0",
"@rn-primitives/portal": "^1.3.0",
"@rn-primitives/switch": "^1.2.0",
"@tanstack/react-form": "^1.29.1",
"expo": "~55.0.23",
"expo-battery": "~55.0.13",
"expo-constants": "~55.0.16",
"expo-font": "~55.0.7",
"expo-haptics": "~55.0.14",
"expo-image": "~55.0.10",
"expo-keep-awake": "~55.0.8",
"expo-linear-gradient": "~55.0.13",
"expo-linking": "~55.0.15",
"expo-navigation-bar": "~55.0.12",
"expo-router": "~55.0.14",
"expo-splash-screen": "~55.0.20",
"expo-status-bar": "~55.0.6",
"expo-system-ui": "^55.0.17",
"jotai": "^2.19.1",
"phosphor-react-native": "^3.0.3",
"react": "19.2.0",
"react-native": "0.83.6",
"react-native-audio-api": "^0.11.5",
"react-native-gesture-handler": "~2.30.0",
"react-native-mmkv": "^4.2.0",
"react-native-nitro-modules": "^0.35.1",
"react-native-pager-view": "8.0.0",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-worklets": "0.7.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@expo/metro-runtime": "~55.0.11",
"@types/jest": "29.5.14",
"@types/react": "~19.2.14",
"jest": "^29.7.0",
"jest-expo": "~55.0.17",
"lefthook": "^2.1.6",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-plugin-react-native": "^0.2.16",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"ultracite": "^7.6.3"
},
"jest": {
"preset": "jest-expo"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
}
}