-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
93 lines (93 loc) · 3.03 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": "@expo-starter/template",
"main": "index.ts",
"version": "1.0.7",
"homepage": "https://expostarter.com",
"repository": "[email protected]:expo-starter/expo-template.git",
"license": "Apache-2.0",
"scripts": {
"dev": "expo start --dev-client --clear",
"dev:web": "expo start -c --web",
"dev:android": "expo start -c --android",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "EXPO_USE_FAST_RESOLVER=1 expo start -c --web",
"export": "expo export -p web",
"format": "biome check --no-errors-on-unmatched --apply .",
"db:generate": "bun drizzle-kit generate",
"migrate": "bun ./db/migrate.ts",
"db:studio": "bun drizzle-kit studio",
"expo-check": "bun expo install --check"
},
"dependencies": {
"@bacons/text-decoder": "^0.0.0",
"@gorhom/bottom-sheet": "^4.6.4",
"@hookform/resolvers": "^3.10.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-toggle-group": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-navigation/native": "^7.0.14",
"@shopify/flash-list": "1.7.1",
"babel-plugin-inline-import": "^3.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "0.38.4",
"drizzle-zod": "^0.5.1",
"expo": "~52.0.27",
"expo-dev-client": "~5.0.10",
"expo-intent-launcher": "~12.0.2",
"expo-linking": "~7.0.4",
"expo-navigation-bar": "~4.0.7",
"expo-notifications": "~0.29.12",
"expo-router": "~4.0.17",
"expo-splash-screen": "~0.29.21",
"expo-sqlite": "~15.0.6",
"expo-status-bar": "~2.0.1",
"expo-system-ui": "~4.0.7",
"expo-web-browser": "~14.0.2",
"gh-pages": "^6.3.0",
"lucide-react-native": "^0.314.0",
"nativewind": "4.1.6",
"next-themes": "^0.3.0",
"phosphor-react-native": "^2.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.2",
"react-native": "0.76.6",
"react-native-gesture-handler": "~2.20.2",
"react-native-mmkv": "3.2.0",
"react-native-reanimated": "~3.16.7",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-svg": "15.8.0",
"react-native-web": "~0.19.13",
"sql.js": "^1.12.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1",
"zustand": "^4.5.6"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@types/react": "~18.3.18",
"@types/sql.js": "^1.4.9",
"tailwindcss": "3.4.1",
"typescript": "~5.3.3"
},
"trustedDependencies": [
"tailwindcss",
"nativewind"
]
}