-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.81 KB
/
package.json
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": "saudeplus",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"prepare": "husky"
},
"dependencies": {
"@expo-google-fonts/inter": "^0.2.3",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-google-signin/google-signin": "^11.0.1",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"@react-navigation/stack": "^6.3.29",
"@types/styled-components": "^5.1.34",
"@types/styled-components-react-native": "^5.2.5",
"babel-plugin-module-resolver": "^5.0.0",
"expo": "~51.0.8",
"expo-camera": "~15.0.10",
"expo-document-picker": "^12.0.1",
"expo-font": "~12.0.5",
"expo-image-picker": "~15.0.5",
"expo-location": "~17.0.1",
"expo-notifications": "~0.28.3",
"expo-status-bar": "~1.12.1",
"firebase": "^10.12.0",
"i": "^0.3.7",
"openai": "^4.47.1",
"react": "^18.2.0",
"react-bash": "^1.6.0",
"react-native": "0.74.1",
"react-native-calendar-picker": "^8.0.2",
"react-native-calendars": "^1.1304.1",
"react-native-document-picker": "^9.3.0",
"react-native-gesture-handler": "~2.16.1",
"react-native-google-signin": "^2.1.1",
"react-native-maps": "1.14.0",
"react-native-maps-directions": "^1.9.0",
"react-native-modal-datetime-picker": "^17.1.0",
"react-native-paper": "^5.12.3",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-vector-icons": "^10.0.3",
"react-test-renderer": "^18.2.0",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.45",
"@types/react-native": "^0.73.0",
"@types/react-native-calendar-picker": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-config-universe": "^12.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.0.11",
"jest-styled-components": "^7.2.0",
"lint-staged": "^15.2.2",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "3.2.5",
"typescript": "~5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write ."
]
},
"private": true
}