This repository was archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.65 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.65 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
{
"name": "ConnectyCubeChatCodeSample",
"version": "1.0.1",
"private": true,
"scripts": {
"postinstall": "npx jetify && cd ios && pod install",
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:reset": "npm run start --reset-cache",
"test": "jest",
"ios": "react-native run-ios",
"android": "react-native run-android",
"android:release": "cd android && ./gradlew app:assembleRelease",
"android:clean": "cd android && ./gradlew clean && ./gradlew cleanBuildCache",
"reinstall": "rm -rf node_modules && npm install",
"clean": "watchman watch-del-all && rm -rf /tmp/metro-bundler-cache-* && rm -rf /tmp/haste-map-react-native-packager-*",
"lint": "eslint ."
},
"dependencies": {
"@react-native-community/async-storage": "1.6.1",
"@react-native-community/datetimepicker": "^3.0.3",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/picker": "^1.8.0",
"@react-native-community/push-notification-ios": "1.0.5",
"@react-native-community/toolbar-android": "0.1.0-rc.2",
"connectycube": "^3.6.0",
"react": "^16.9.0",
"react-dom": "^16.13.1",
"react-gif-player": "^0.4.2",
"react-native": "^0.61.5",
"react-native-autogrow-textinput": "5.3.0",
"react-native-connectycube": "^3.2.0",
"react-native-device-info": "5.5.1",
"react-native-dialog": "^5.6.0",
"react-native-dialog-input": "^1.0.7",
"react-native-elements": "1.2.7",
"react-native-fast-image": "7.0.2",
"react-native-fix-image": "^2.1.0",
"react-native-gesture-handler": "1.5.2",
"react-native-image-crop-picker": "0.27.0",
"react-native-image-zoom-viewer": "2.2.27",
"react-native-linear-gradient": "^2.5.6",
"react-native-maps": "^0.27.1",
"react-native-modal": "^11.5.6",
"react-native-modal-datetime-picker": "^9.0.0",
"react-native-push-notification": "3.1.9",
"react-native-reanimated": "1.4.0",
"react-native-restart": "0.0.17",
"react-native-screens": "2.0.0-alpha.22",
"react-native-super-grid": "^4.0.2",
"react-native-vector-icons": "^6.7.0",
"react-native-video": "^4.4.5",
"react-native-video-controls": "^2.6.0",
"react-navigation": "4.0.10",
"react-navigation-stack": "1.10.3",
"react-redux": "7.1.0",
"redux": "4.0.1",
"rn-prompt": "1.0.4"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/runtime": "^7.7.7",
"@react-native-community/eslint-config": "0.0.5",
"babel-jest": "24.9.0",
"eslint": "6.8.0",
"jest": "24.9.0",
"metro-react-native-babel-preset": "0.57.0",
"react-test-renderer": "16.9.0"
},
"jest": {
"preset": "react-native"
}
}