-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.95 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "volo",
"version": "1.0.0",
"main": "./src/App.tsx",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@expo/html-elements": "latest",
"@expo/vector-icons": "^13.0.0",
"@expo/webpack-config": "^18.0.2",
"@hookform/resolvers": "^3.0.0",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-community/geolocation": "^3.0.5",
"@react-navigation/bottom-tabs": "^6.5.7",
"@react-navigation/material-top-tabs": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@supabase/storage-js": "^2.5.1",
"@supabase/supabase-js": "^2.21.0",
"@tanstack/react-query": "^4.28.0",
"axios": "^1.3.4",
"base64-arraybuffer": "^1.0.2",
"dayjs": "^1.11.7",
"expo": "~48.0.9",
"expo-device": "^5.2.1",
"expo-image": "~1.0.1",
"expo-image-picker": "^14.1.1",
"expo-location": "~15.1.1",
"expo-network": "~5.2.1",
"expo-notifications": "^0.18.1",
"expo-permissions": "^14.1.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "^1.4.4",
"i18next": "^22.4.13",
"i18next-browser-languagedetector": "^7.0.1",
"intl-pluralrules": "^1.3.1",
"jwt-decode": "^3.1.2",
"lottie-react-native": "5.1.4",
"native-base": "^3.4.28",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-i18next": "^12.2.0",
"react-native": "^0.71.8",
"react-native-actions-sheet": "^0.8.29",
"react-native-apple-header": "^1.0.1",
"react-native-gesture-handler": "~2.9.0",
"react-native-gifted-chat": "^2.1.0",
"react-native-image-viewing": "^0.2.2",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-keyboard-aware-scrollview": "^2.1.0",
"react-native-login-screen": "^5.0.0",
"react-native-multiple-select": "^0.5.12",
"react-native-pager-view": "6.1.2",
"react-native-phone-input": "^1.3.6",
"react-native-reanimated": "~2.14.4",
"react-native-reanimated-carousel": "^3.3.0",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "13.4.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-tab-view": "^3.5.1",
"react-native-tag-selector": "^0.0.3",
"react-native-text-input-interactive": "^0.1.4",
"react-native-url-polyfill": "^1.3.0",
"react-phone-number-input": "^3.2.19",
"socket.io-client": "^4.6.1",
"yup": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.0.14",
"@types/react-native": "^0.71.6",
"@types/react-native-snap-carousel": "^3.8.5",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-expo": "^48.0.2",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"react-native-dotenv": "^3.4.8",
"react-native-web": "~0.18.10",
"reactotron-react-native": "^5.0.3",
"typescript": "^4.9.4"
},
"private": true,
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --ext .tsx --ext .ts src/ --fix"
],
"./src/**": [
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
],
"moduleNameMapper": {
"\\.svg": "<rootDir>/src/utils/testing/svgMock.ts"
}
}
}