-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.68 KB
/
package.json
File metadata and controls
88 lines (88 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
88
{
"name": "medical-health-app",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"clean": "expo r -c",
"eject": "expo eject"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.21.0",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@reduxjs/toolkit": "^2.0.1",
"expo": "~53.0.20",
"expo-auth-session": "~5.0.2",
"expo-av": "~13.4.1",
"expo-barcode-scanner": "~12.5.3",
"expo-battery": "~7.0.0",
"expo-blur": "~12.4.1",
"expo-calendar": "~11.3.0",
"expo-camera": "~13.4.4",
"expo-constants": "~14.4.2",
"expo-contacts": "~12.4.0",
"expo-crypto": "~12.4.1",
"expo-device": "~5.4.0",
"expo-file-system": "~15.4.5",
"expo-haptics": "~12.4.0",
"expo-image-manipulator": "~11.4.0",
"expo-image-picker": "~14.3.2",
"expo-keep-awake": "~12.2.0",
"expo-linear-gradient": "~12.3.0",
"expo-linking": "~5.0.2",
"expo-location": "~16.1.0",
"expo-media-library": "~15.4.1",
"expo-network": "~5.4.0",
"expo-notifications": "~0.31.4",
"expo-permissions": "~14.2.1",
"expo-print": "~12.4.1",
"expo-screen-orientation": "~6.2.0",
"expo-secure-store": "~12.3.1",
"expo-sensors": "~12.3.0",
"expo-sharing": "~11.5.0",
"expo-splash-screen": "~0.30.10",
"expo-sqlite": "~11.3.3",
"expo-status-bar": "~1.6.0",
"expo-system-ui": "~2.4.0",
"expo-task-manager": "~11.3.0",
"expo-updates": "~0.18.17",
"expo-web-browser": "~12.3.2",
"firebase": "^10.7.1",
"react": "18.2.0",
"react-native": "0.72.17",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "~2.12.0",
"react-native-paper": "^5.12.1",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-vector-icons": "^10.0.3",
"react-redux": "^9.0.4"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@types/react": "~18.2.45",
"@types/react-native": "~0.72.8",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-expo": "^7.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"typescript": "^5.3.3"
},
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}