-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.73 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.73 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
108
109
110
111
112
113
114
115
116
{
"name": "gamix",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client",
"start:rc": "expo start --dev-client --reset-cache",
"start:tunnel": "expo start --tunnel",
"start:tunnel:rc": "expo start --tunnel --reset-cache",
"prebuild": "expo prebuild",
"android": "expo run:android",
"update": "eas update --environment development",
"build:configure": "eas build:configure",
"build:dev": "eas build -p android --profile development",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"lint": "eslint . --ext .ts,.tsx --fix"
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-google-signin/google-signin": "^13.2.0",
"@react-navigation/bottom-tabs": "^7.2.0",
"@react-navigation/native": "^7.0.14",
"@react-navigation/native-stack": "^7.2.0",
"@reduxjs/toolkit": "^2.6.1",
"@rneui/themed": "^4.0.0-rc.8",
"@tanstack/react-query": "^5.72.1",
"axios": "^1.8.3",
"expo": "~52.0.47",
"expo-blur": "~14.0.3",
"expo-calendar": "~14.0.6",
"expo-camera": "~16.0.18",
"expo-checkbox": "~4.0.1",
"expo-constants": "~17.0.8",
"expo-crypto": "^14.0.2",
"expo-dev-client": "~5.0.20",
"expo-file-system": "~18.0.12",
"expo-font": "~13.0.4",
"expo-haptics": "~14.0.1",
"expo-image": "~2.0.7",
"expo-image-picker": "~16.0.6",
"expo-linear-gradient": "~14.0.2",
"expo-linking": "~7.0.5",
"expo-media-library": "~17.0.6",
"expo-router": "~4.0.21",
"expo-secure-store": "^14.0.1",
"expo-sensors": "~14.0.2",
"expo-splash-screen": "~0.29.24",
"expo-status-bar": "~2.0.1",
"expo-symbols": "~0.2.2",
"expo-system-ui": "~4.0.9",
"expo-updates": "~0.27.4",
"expo-web-browser": "~14.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.2",
"react-native": "0.76.9",
"react-native-controlled-mentions": "^2.2.5",
"react-native-element-dropdown": "^2.12.4",
"react-native-emoji-popup": "^0.3.0",
"react-native-paper": "^5.14.1",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "^4.12.0",
"react-native-screens": "~4.4.0",
"react-native-web": "~0.19.13",
"react-native-webview": "13.12.5",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"socket.io-client": "^4.7.5",
"zod": "^3.24.2",
"babel-preset-expo": "~12.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@react-native-community/cli": "^18.0.0",
"@tanstack/eslint-plugin-query": "^4.38.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.12",
"@types/react": "~18.3.12",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"babel-jest": "^30.2.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.2.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-native": "^5.0.0",
"jest": "^29.2.1",
"jest-expo": "~52.0.6",
"react-test-renderer": "18.3.1",
"typescript": "^5.3.3"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"react-native-element-dropdown",
"expo-checkbox",
"zod",
"@rneui/themed",
"react-native-controlled-mentions",
"socket.io-client"
]
}
}
},
"private": true
}