-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.16 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.16 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
{
"name": "quckapp-mobile",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development expo start",
"android": "cross-env NODE_ENV=development expo run:android",
"ios": "cross-env NODE_ENV=development expo run:ios",
"web": "cross-env NODE_ENV=development expo start --web",
"build:android": "eas build --platform android",
"build:ios": "eas build --platform ios",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"firebase:dev": "node scripts/firebase-config.js dev",
"firebase:prod": "node scripts/firebase-config.js prod"
},
"dependencies": {
"@callstack/liquid-glass": "^0.6.0",
"@config-plugins/react-native-callkeep": "^12.0.0",
"@expo/metro-runtime": "~6.1.2",
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/netinfo": "11.4.1",
"@react-native-firebase/app": "^23.5.0",
"@react-native-firebase/messaging": "^23.5.0",
"@react-native-picker/picker": "2.11.1",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6.5",
"date-fns": "^3.0.6",
"expo": "^54.0.25",
"expo-av": "~16.0.7",
"expo-blur": "~15.0.7",
"expo-camera": "~17.0.9",
"expo-constants": "~18.0.10",
"expo-device": "~8.0.9",
"expo-file-system": "~19.0.19",
"expo-font": "~14.0.9",
"expo-haptics": "~15.0.7",
"expo-image-picker": "~17.0.8",
"expo-intent-launcher": "~13.0.8",
"expo-linear-gradient": "~15.0.7",
"expo-local-authentication": "~17.0.8",
"expo-localization": "~17.0.7",
"expo-notifications": "~0.32.13",
"expo-secure-store": "~15.0.8",
"expo-status-bar": "~3.0.8",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-callkeep": "^4.3.16",
"react-native-draggable": "^3.3.0",
"react-native-gesture-handler": "~2.28.0",
"react-native-get-random-values": "~1.11.0",
"react-native-gifted-chat": "^2.4.0",
"react-native-incall-manager": "^4.2.1",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "^0.21.0",
"react-native-webrtc": "^124.0.7",
"react-native-worklets": "0.5.1",
"react-redux": "^9.0.4",
"redux-persist": "^6.0.0",
"socket.io-client": "^4.6.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@config-plugins/react-native-webrtc": "^13.0.0",
"@react-native-community/cli": "latest",
"@react-native/metro-config": "^0.80.2",
"@types/react": "~19.1.10",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-native": "^4.1.0",
"prettier": "^3.1.1",
"react-native-svg-transformer": "^1.5.2",
"sharp": "^0.34.5",
"typescript": "^5.3.3"
},
"private": true
}