-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 3.18 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
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
{
"name": "online-shopping",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"log": "react-native log-android",
"build": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.9",
"@react-native-community/datetimepicker": "^3.5.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-firebase/app": "^12.9.3",
"@react-native-firebase/messaging": "^12.9.3",
"@react-navigation/drawer": "^5.12.5",
"@react-navigation/material-bottom-tabs": "^5.3.15",
"@react-navigation/material-top-tabs": "^5.3.15",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"accordion-collapse-react-native": "^1.0.1",
"clarifai": "^2.9.1",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"npm": "^7.19.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-hook-form": "^7.18.0",
"react-native": "0.64.2",
"react-native-auto-height-image": "^3.2.4",
"react-native-bootsplash": "^3.2.4",
"react-native-chart-kit": "^6.11.0",
"react-native-collapsible": "^1.6.0",
"react-native-customisable-switch": "^0.1.0",
"react-native-dotenv": "^3.2.0",
"react-native-dropdown-picker": "^5.1.21",
"react-native-elements": "^3.4.2",
"react-native-fast-image": "^8.3.6",
"react-native-flipper": "^0.143.0",
"react-native-geolocation-service": "^5.3.0-beta.4",
"react-native-gesture-handler": "^1.10.3",
"react-native-image-crop-picker": "^0.36.2",
"react-native-image-modal": "^2.0.3",
"react-native-image-slider-box": "^1.0.12",
"react-native-keep-awake": "^4.0.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-maps": "^0.31.1",
"react-native-month-picker": "^1.0.1",
"react-native-orientation": "^3.1.3",
"react-native-paper": "^4.9.2",
"react-native-permissions": "^3.3.1",
"react-native-reanimated": "^2.8.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.4.0",
"react-native-snap-carousel": "^3.9.1",
"react-native-status-bar-height": "^2.6.0",
"react-native-svg": "^12.1.1",
"react-native-svg-charts": "^5.4.0",
"react-native-tab-view": "^2.16.0",
"react-native-text-input-mask": "^3.1.4",
"react-native-toast-message": "^1.6.0",
"react-native-vector-icons": "^8.1.0",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-flipper": "^2.0.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"rn-swipeable-panel": "^1.2.5"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/runtime": "7.14.6",
"@react-native-community/eslint-config": "2.0.0",
"babel-jest": "26.6.3",
"eslint": "7.14.0",
"jest": "26.6.3",
"metro-react-native-babel-preset": "0.64.0",
"react-test-renderer": "17.0.1"
},
"jest": {
"preset": "react-native"
}
}