-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.4 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.4 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
{
"name": "client",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"prepare": "husky install",
"start": "expo start",
"start:tunnel": "expo start --tunnel",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .tsx --ext .ts . --fix",
"server": "json-server --watch --port 3001 --host 192.168.1.15 ./mocks/db.json ",
"build": "eas build --platform all",
"build:android": "eas build --platform android",
"build:ios": "eas build --platform ios",
"preview": "eas build --platform all --profile preview",
"preview:android": "eas build --platform android --profile preview",
"preview:ios": "eas build --platform ios --profile preview"
},
"dependencies": {
"@expo/ngrok": "^4.1.0",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-community/slider": "4.4.2",
"@react-native-masked-view/masked-view": "0.2.8",
"@react-navigation/material-bottom-tabs": "^6.2.15",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.3.16",
"axios": "^1.3.5",
"expo": "~48.0.9",
"expo-font": "~11.1.1",
"expo-image-picker": "~14.1.1",
"expo-linear-gradient": "~12.1.2",
"expo-localization": "~14.1.1",
"expo-location": "~15.1.1",
"expo-media-library": "~15.2.3",
"expo-navigation-bar": "~2.1.1",
"expo-secure-store": "~12.1.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-system-ui": "~2.2.1",
"expo-web-browser": "~12.1.1",
"formik": "^2.2.9",
"i18n-js": "^4.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.8",
"react-native-gesture-handler": "~2.9.0",
"react-native-gifted-chat": "^2.0.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-map-clustering": "^3.4.2",
"react-native-maps": "1.3.2",
"react-native-paper": "^5.5.2",
"react-native-paper-dates": "^0.15.1",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-super-grid": "^5.0.0",
"react-native-web": "~0.18.10",
"yup": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/jest-native": "^5.4.2",
"@types/react": "~18.0.14",
"@types/react-native-dotenv": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "^8.0.3",
"jest": "^29.2.1",
"jest-expo": "~48.0.0",
"json-server": "^0.17.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"react-native-dotenv": "^3.4.8",
"react-test-renderer": "18.2.0",
"typescript": "^4.9.4"
},
"private": true
}