-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.7 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": "hydra",
"version": "4.1.1",
"main": "./app/index.tsx",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint **/*.ts **/*.tsx",
"lint:fix": "eslint **/*.ts **/*.tsx --fix",
"tsc": "tsc --noEmit",
"generate-docs": "bun run generateDocumentation.ts",
"test": "bun test"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/metro-runtime": "^57.0.7",
"@expo/react-native-action-sheet": "^4.1.1",
"@preeternal/react-native-cookie-manager": "^6.4.0",
"@react-native-community/netinfo": "12.0.1",
"@react-native-vector-icons/ant-design": "^13.1.2",
"@react-native-vector-icons/common": "^13.0.1",
"@react-native-vector-icons/entypo": "^13.1.2",
"@react-native-vector-icons/feather": "^13.1.2",
"@react-native-vector-icons/fontawesome": "^13.1.2",
"@react-native-vector-icons/fontawesome5": "^13.1.2",
"@react-native-vector-icons/fontawesome6": "^13.1.2",
"@react-native-vector-icons/ionicons": "^13.1.2",
"@react-native-vector-icons/material-design-icons": "^13.1.2",
"@react-native-vector-icons/material-icons": "^13.1.2",
"@react-native-vector-icons/octicons": "^21.1.2",
"@react-native-vector-icons/simple-line-icons": "^13.1.2",
"@react-navigation/bottom-tabs": "^7.18.14",
"@react-navigation/native": "^7.3.14",
"@react-navigation/native-stack": "^7.18.6",
"@sentry/react-native": "~8.20.0",
"@shopify/flash-list": "^2.3.1",
"babel-plugin-inline-import": "^3.0.0",
"drizzle-orm": "^0.45.2",
"expo": "^57.0.0",
"expo-application": "~57.0.2",
"expo-blur": "~57.0.2",
"expo-clipboard": "~57.0.1",
"expo-constants": "~57.0.7",
"expo-dev-client": "~57.0.9",
"expo-device": "~57.0.1",
"expo-drizzle-studio-plugin": "^0.2.1",
"expo-font": "~57.0.1",
"expo-haptics": "~57.0.1",
"expo-image": "~57.0.1",
"expo-image-picker": "~57.0.6",
"expo-linking": "~57.0.4",
"expo-media-library": "~57.0.3",
"expo-modules-core": "^57.0.8",
"expo-network": "~57.0.1",
"expo-notifications": "~57.0.7",
"expo-screen-orientation": "~57.0.1",
"expo-secure-store": "~57.0.1",
"expo-sharing": "~57.0.7",
"expo-splash-screen": "~57.0.5",
"expo-sqlite": "~57.0.1",
"expo-status-bar": "~57.0.1",
"expo-system-ui": "~57.0.1",
"expo-updates": "~57.0.10",
"expo-video": "~57.0.2",
"expo-web-browser": "~57.0.2",
"html-entities": "^2.6.0",
"htmlparser2": "^12.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "0.86.0",
"react-native-gesture-handler": "3.1.0",
"react-native-mmkv": "^4.3.2",
"react-native-nitro-modules": "^0.36.1",
"react-native-purchases": "^10.4.4",
"react-native-reanimated": "4.5.0",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "~4.26.0",
"react-native-web": "^0.21.2",
"react-native-webview": "13.16.1",
"react-native-worklets": "0.10.0",
"typescript-eslint": "^8.65.0"
},
"devDependencies": {
"@expo/image-utils": "0.11.4",
"@types/react": "~19.2.10",
"drizzle-kit": "^0.31.10",
"eslint": "^9.33.0",
"eslint-config-expo": "~57.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.1",
"prettier": "^3.6.2",
"typescript": "~6.0.3",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1",
"wrapper-webpack-plugin": "^2.2.2"
},
"private": true,
"allowScripts": {
"esbuild@0.18.20": true,
"unrs-resolver@1.7.2": true,
"@sentry/cli@3.6.1": true,
"esbuild@0.25.12": true,
"esbuild@0.28.1": true
}
}