-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.36 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.36 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
{
"name": "petka-app",
"main": "index.ts",
"version": "1.7.0",
"type": "module",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"format": "biome format --write .",
"prepare": "husky",
"test": "jest",
"test:coverage": "jest --coverage --silent"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,json}": "biome check --write --no-errors-on-unmatched"
},
"dependencies": {
"@convex-dev/crons": "^0.2.0",
"@convex-dev/expo-push-notifications": "0.3.1",
"@convex-dev/migrations": "^0.3.3",
"@convex-dev/presence": "^0.3.0",
"@expo/metro-runtime": "~55.0.10",
"@gorhom/bottom-sheet": "^5.2.9",
"@hookform/resolvers": "^5.2.2",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.15.5",
"@react-navigation/elements": "^2.9.14",
"@react-navigation/native": "^7.1.33",
"@sentry/react-native": "^7.11.0",
"@shopify/flash-list": "2.0.2",
"burnt": "^0.13.0",
"convex": "^1.35.1",
"convex-helpers": "^0.1.114",
"dayjs": "^1.11.20",
"expo": "^55.0.17",
"expo-application": "~55.0.14",
"expo-asset": "~55.0.16",
"expo-blur": "~55.0.14",
"expo-clipboard": "~55.0.13",
"expo-constants": "~55.0.15",
"expo-crypto": "~55.0.14",
"expo-dev-client": "~55.0.28",
"expo-device": "~55.0.15",
"expo-file-system": "~55.0.17",
"expo-font": "~55.0.6",
"expo-haptics": "~55.0.14",
"expo-image": "~55.0.9",
"expo-linking": "~55.0.14",
"expo-localization": "~55.0.13",
"expo-notifications": "~55.0.20",
"expo-router": "~55.0.13",
"expo-splash-screen": "~55.0.19",
"expo-status-bar": "~55.0.5",
"expo-symbols": "~55.0.7",
"expo-system-ui": "~55.0.16",
"expo-tracking-transparency": "^55.0.13",
"expo-updates": "~55.0.21",
"expo-web-browser": "~55.0.14",
"lucide-react-native": "^1.8.0",
"posthog-react-native": "^4.41.2",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.72.1",
"react-native": "0.83.6",
"react-native-edge-to-edge": "1.7.0",
"react-native-gesture-handler": "~2.30.0",
"react-native-mmkv": "^4.3.1",
"react-native-nitro-modules": "^0.35.4",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-unistyles": "3.2.3",
"react-native-web": "~0.21.1",
"react-native-webview": "13.16.0",
"react-native-worklets": "0.7.4",
"require-from-string": "^2.0.2",
"sucrase": "^3.35.1",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@biomejs/biome": "2.4.12",
"@sentry/cli": "^2.53.0",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.14",
"cheerio": "^1.2.0",
"fast-xml-parser": "^5.6.0",
"husky": "^9.1.7",
"jest": "~29.7.0",
"jest-expo": "~55.0.16",
"lint-staged": "^16.4.0",
"metro-core": "^0.83.1",
"react-native-svg-transformer": "^1.5.1",
"ts-jest": "^29.4.9",
"typescript": "~5.9.3"
},
"private": true,
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"@expo/dom-webview": "55.0.5"
}
}
}