-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.44 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "coaster",
"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",
"ts:check": "tsc",
"preinstall": "npx only-allow pnpm",
"postinstall": "patch-package",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"@eva-design/eva": "^2.2.0",
"@gorhom/bottom-sheet": "^4.6.3",
"@mapbox/geo-viewport": "^0.5.0",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-navigation/bottom-tabs": "^6.6.0",
"@react-navigation/material-top-tabs": "^6.6.13",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.10.0",
"@reduxjs/toolkit": "^2.2.6",
"@shopify/flash-list": "^1.7.0",
"@tanstack/react-query": "^5.50.1",
"@types/graphql": "^14.5.0",
"@ui-kitten/components": "^5.3.1",
"@ui-kitten/eva-icons": "^5.3.1",
"axios": "^1.7.2",
"expo": "~51.0.18",
"expo-auth-session": "~5.5.2",
"expo-background-fetch": "~12.0.1",
"expo-crypto": "~13.0.2",
"expo-dev-client": "^4.0.19",
"expo-secure-store": "^13.0.2",
"expo-status-bar": "~1.12.1",
"graphql": "^16.9.0",
"graphql-request": "5.1.0",
"lodash": "^4.17.21",
"lottie-react-native": "^6.7.2",
"react": "18.2.0",
"react-native": "0.74.1",
"react-native-app-link": "^1.0.1",
"react-native-background-fetch": "^4.2.5",
"react-native-background-geolocation": "^4.16.4",
"react-native-fast-image": "^8.6.3",
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "~2.16.2",
"react-native-image-crop-picker": "^0.41.2",
"react-native-maps": "^1.15.6",
"react-native-notifications": "^5.1.0",
"react-native-pager-view": "^6.3.3",
"react-native-reanimated": "~3.10.1",
"react-native-reanimated-carousel": "^3.5.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-sse": "^1.2.1",
"react-native-svg": "15.2.0",
"react-native-toast-message": "^2.2.0",
"react-native-track-player": "^4.1.1",
"react-redux": "^9.1.2",
"redux-persist": "^6.0.0",
"supercluster": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.2",
"@parcel/watcher": "^2.4.1",
"@types/lodash": "^4.17.6",
"@types/mapbox__geo-viewport": "^0.5.3",
"@types/react": "~18.2.79",
"@types/react-native": "^0.73.0",
"@types/react-native-app-link": "^1.0.2",
"@types/supercluster": "^7.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"react-native-dotenv": "^3.4.11",
"typescript": "^5.5.3"
},
"private": true,
"pnpm": {
"strict-peer-dependencies": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write"
]
}
}