-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.68 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.68 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
{
"name": "react-native-basic-auth",
"main": "expo-router/entry",
"version": "1.0.0",
"author": "victorzarzar (https://github.com/Victor-Zarzar)",
"repository": "https://github.com/Victor-Zarzar/react-native-basic-auth",
"bugs": {
"url": "https://github.com/Victor-Zarzar/react-native-basic-auth/issues"
},
"scripts": {
"dev": "expo start -c",
"dev:client": "expo start --dev-client",
"android": "expo start -c --android",
"ios": "expo start -c --ios",
"web": "expo start -c --web",
"db:generate": "drizzle-kit generate",
"clean": "rm -rf .expo node_modules",
"prebuild": "expo prebuild --clean",
"ios:native": "expo run:ios",
"android:native": "expo run:android",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"typecheck": "tsc --noEmit",
"test": "bun test",
"fix-deps": "bunx expo install --fix",
"update-deps": "bun update",
"update-latest": "bun update --latest"
},
"dependencies": {
"@expo/metro-runtime": "~55.0.9",
"@hookform/resolvers": "^5.2.2",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/native": "^7.1.33",
"@rn-primitives/avatar": "^1.4.0",
"@rn-primitives/dropdown-menu": "^1.4.0",
"@rn-primitives/label": "^1.4.0",
"@rn-primitives/popover": "^1.4.0",
"@rn-primitives/portal": "~1.4.0",
"@rn-primitives/separator": "^1.4.0",
"@rn-primitives/slot": "^1.4.0",
"@rn-primitives/tabs": "^1.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"expo": "~55.0.15",
"expo-constants": "~55.0.14",
"expo-crypto": "~55.0.14",
"expo-drizzle-studio-plugin": "^0.2.1",
"expo-linking": "~55.0.13",
"expo-localization": "~55.0.13",
"expo-router": "~55.0.12",
"expo-splash-screen": "~55.0.18",
"expo-sqlite": "~55.0.15",
"expo-status-bar": "~55.0.5",
"expo-system-ui": "~55.0.15",
"i18next": "^26.0.4",
"lucide-react-native": "^1.8.0",
"nativewind": "^4.2.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.72.1",
"react-i18next": "^17.0.2",
"react-native": "0.83.4",
"react-native-argon2": "^4.0.0",
"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-web": "^0.21.2",
"react-native-worklets": "0.7.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@biomejs/biome": "^2.4.11",
"@types/bun": "^1.3.12",
"@types/react": "~19.2.14",
"babel-plugin-inline-import": "^3.0.0",
"drizzle-kit": "^0.31.10",
"typescript": "~6.0.2"
},
"private": true
}