-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "anibox",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@expo/vector-icons": "^15.0.3",
"@gorhom/bottom-sheet": "^5.1.8",
"@kolking/react-native-rating": "^1.4.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.2.1",
"@react-navigation/drawer": "^7.9.4",
"@react-navigation/native": "^7.0.15",
"@react-navigation/native-stack": "^7.2.1",
"@tanstack/react-query": "^5.85.5",
"@types/react": "~19.1.10",
"@types/react-native": "^0.72.8",
"axios": "^1.13.6",
"babel-preset-expo": "^9.2.0",
"expo": "^54.0.29",
"expo-constants": "~18.0.12",
"expo-image-picker": "~17.0.10",
"expo-status-bar": "~3.0.9",
"express": "^4.21.2",
"jwt-decode": "^4.0.0",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-ratings": "^8.1.0",
"react-native-react-query-devtools": "^1.5.1",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-toast-message": "^2.3.3",
"react-native-worklets": "0.5.1",
"typescript": "~5.9.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/react": "~19.1.10",
"jest-fetch-mock": "^3.0.3",
"typescript": "~5.9.2"
},
"private": true,
"overrides": {
"react-native-appwrite": {
"expo-file-system": "18.*.*",
"react-native": ">=0.76.7 <1.0.0"
}
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./jest.setup.js"
]
}
}