-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.43 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.43 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
{
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint --ext .jsx,.js src",
"postinstall": "patch-package",
"prepare": "husky install"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.2",
"@likashefqet/react-native-image-zoom": "^1.2.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/datetimepicker": "8.4.4",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-picker/picker": "2.11.1",
"@react-navigation/drawer": "^6.7.2",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"@use-expo/font": "^2.0.0",
"axios": "^0.27.2",
"deprecated-react-native-prop-types": "^2.3.0",
"expo": "54.0.19",
"expo-application": "~7.0.7",
"expo-constants": "~18.0.10",
"expo-contacts": "~15.0.10",
"expo-dev-client": "~6.0.16",
"expo-device": "~8.0.9",
"expo-font": "~14.0.9",
"expo-image-picker": "~17.0.8",
"expo-linking": "~8.0.8",
"expo-localization": "~17.0.7",
"expo-location": "~19.0.7",
"expo-navigation-bar": "~5.0.9",
"expo-network": "~8.0.7",
"expo-screen-orientation": "~9.0.7",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"expo-system-ui": "~6.0.8",
"expo-updates": "~29.0.12",
"expo-vector-icons": "^10.0.1",
"expo-web-browser": "~15.0.8",
"formik": "^2.1.4",
"i18n-iso-countries": "^5.2.0",
"i18n-js": "^3.5.1",
"jsrsasign": "^10.5.26",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.15",
"moment": "^2.18.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prop-types": "^15.8.1",
"react": "19.1.0",
"react-date-object": "^2.1.9",
"react-dom": "19.1.0",
"react-i18next": "^11.18.4",
"react-native": "0.81.5",
"react-native-autocomplete-dropdown": "^2.0.7",
"react-native-country-flag": "^2.0.2",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "~2.28.0",
"react-native-modal-datetime-picker": "^13.1.2",
"react-native-modal-selector": "^2.0.3",
"react-native-paper": "^4.12.4",
"react-native-picker-select": "^7.0.0",
"react-native-reanimated": "^3.17.5",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.0",
"react-native-webview": "13.15.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@react-native-community/cli": "^20.0.2",
"babel-preset-expo": "~54.0.0",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.1.1",
"prettier-eslint": "^15.0.1"
},
"private": true,
"lint-staged": {
"*.{js,jsx,json,css,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx,css,md}": "prettier --write"
},
"resolutions": {
"react-native-vector-icons": "10.3.0"
},
"name": "fathersApp",
"version": "1.0.0"
}