-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.82 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
{
"name": "learn-stack",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"ts:check": "tsc",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"dependencies": {
"@expo/metro-runtime": "~3.2.1",
"@expo/vector-icons": "^14.0.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-switch": "^1.0.3",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-navigation/material-top-tabs": "^6.6.13",
"@rneui/themed": "^4.0.0-rc.8",
"@supabase/supabase-js": "^2.43.4",
"@tanstack/react-query": "^5.45.0",
"aes-js": "^3.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"expo": "^51.0.14",
"expo-auth-session": "~5.5.2",
"expo-constants": "~16.0.2",
"expo-crypto": "~13.0.2",
"expo-linking": "~6.3.1",
"expo-router": "^3.5.16",
"expo-secure-store": "~13.0.1",
"expo-status-bar": "~1.12.1",
"lucide-react-native": "^0.379.0",
"nativewind": "^4.0.1",
"prettier-plugin-tailwind-css": "^1.5.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-native": "^0.74.2",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-gesture-handler": "~2.16.1",
"react-native-get-random-values": "^1.11.0",
"react-native-pager-view": "6.3.0",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-swipeable-item": "^2.0.9",
"react-native-tab-view": "^3.5.2",
"react-native-url-polyfill": "^2.0.0",
"react-native-web": "~0.19.10",
"supabase": "^1.176.10",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@tanstack/eslint-plugin-query": "^5.43.1",
"@types/aes-js": "^3.1.4",
"@types/react": "~18.2.45",
"@types/react-native-get-random-values": "^1.8.2",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.4",
"typescript": "~5.3.3"
},
"overrides": {
"@radix-ui/react-alert-dialog": {
"react": "$react",
"react-dom": "$react-dom"
},
"@radix-ui/react-checkbox": {
"react": "$react",
"react-dom": "$react-dom"
},
"@radix-ui/react-dropdown-menu": {
"react": "$react",
"react-dom": "$react-dom"
},
"@radix-ui/react-switch": {
"react": "$react",
"react-dom": "$react-dom"
},
"lucide-react-native": {
"react": "$react",
"react-native": "$react-native"
}
},
"private": true
}