-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "RNChatApp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"postinstall": "react-native setup-ios-permissions && pod-install"
},
"reactNativePermissionsIOS": [
"Camera",
"MediaLibrary",
"Microphone",
"Notifications",
"PhotoLibrary",
"PhotoLibraryAddOnly"
],
"dependencies": {
"@bam.tech/react-native-image-resizer": "^3.0.5",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-camera-roll/camera-roll": "^5.2.4",
"@react-native-clipboard/clipboard": "^1.11.2",
"@react-native-community/netinfo": "^9.3.7",
"@react-native-firebase/app": "^17.3.2",
"@react-native-firebase/messaging": "^17.3.2",
"@react-native/normalize-color": "^2.1.0",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@sendbird/chat": "^4.5.0",
"@sendbird/uikit-react-native": "^2.3.0",
"date-fns": "^2.29.3",
"react": "17.0.2",
"react-native": "0.66.0",
"react-native-create-thumbnail": "^1.6.4",
"react-native-document-picker": "^8.1.3",
"react-native-file-access": "^2.5.3",
"react-native-image-picker": "^5.1.0",
"react-native-permissions": "^3.7.3",
"react-native-safe-area-context": "^4.5.0",
"react-native-screens": "^3.20.0",
"react-native-uuid": "^2.0.1",
"react-native-video": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "^17.0.2",
"@types/react-native": "^0.66.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native"
}
}