forked from BluezoneGlobal/bluezone-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 4.17 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
{
"name": "Bluezone",
"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 .",
"clear-cache": "rm -rf /tmp/metro-* && rm -rf .env",
"google-service-product": "cp -r android/app/google-services/product.json android/app/google-services.json",
"google-service-developer": "cp -r android/app/google-services/developer.json android/app/google-services.json",
"build-product-dev": "npm run clear-cache && cp -r env/product_store .env && npm run google-service-product && npx react-native run-android --variant=productDebug",
"build-product-store": "npm run clear-cache && cp -r env/product_store .env && npm run google-service-product && cd ./android && ./gradlew bundleproductRelease",
"build-product-web": "npm run clear-cache && cp -r env/product_web .env && npm run google-service-product && cd ./android && ./gradlew assembleproductRelease",
"build-product-huawei": "npm run clear-cache && cp -r env/product_huawei .env && npm run google-service-product && cd ./android && ./gradlew assembleproductRelease",
"build-developer-dev": "npm run clear-cache && cp -r env/developer .env && npm run google-service-developer && npx react-native run-android --variant=developerDebug",
"build-developer-store": "npm run clear-cache && cp -r env/developer .env && npm run google-service-developer && cd ./android && ./gradlew assembledeveloperRelease",
"build-developer-web": "npm run clear-cache && cp -r env/developer_web .env && npm run google-service-developer && cd ./android && ./gradlew assembledeveloperRelease",
"build-developer-huawei": "npm run clear-cache && cp -r env/developer_huawei .env && npm run google-service-developer && cd ./android && ./gradlew assembledeveloperRelease"
},
"dependencies": {
"@ant-design/icons-react-native": "^2.2.1",
"@ant-design/react-native": "^3.3.0",
"@react-native-community/art": "^1.2.0",
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/checkbox": "^0.4.2",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/masked-view": "^0.1.7",
"@react-native-community/push-notification-ios": "^1.1.1",
"@react-navigation/bottom-tabs": "^5.2.7",
"@react-navigation/compat": "^5.1.14",
"@react-navigation/material-top-tabs": "^5.2.15",
"@react-navigation/native": "^5.1.6",
"@react-navigation/stack": "^5.2.11",
"axios": "^0.19.2",
"intl": "^1.2.5",
"lottie-ios": "^3.1.8",
"lottie-react-native": "^3.5.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "16.11.0",
"react-intl": "^2.7.1",
"react-native": "0.62.2",
"react-native-android-location-enabler": "^1.2.1",
"react-native-bluetooth-status": "^1.5.0",
"react-native-config": "^1.3.3",
"react-native-fast-image": "^8.1.5",
"react-native-firebase": "^5.6.0",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "^1.6.1",
"react-native-keyboard-aware-scroll-view": "^0.9.2",
"react-native-modal": "^11.5.6",
"react-native-permissions": "^2.1.3",
"react-native-progress": "^4.1.2",
"react-native-push-notification": "^3.1.9",
"react-native-reanimated": "^1.8.0",
"react-native-render-html": "^4.2.3",
"react-native-responsive-fontsize": "^0.4.3",
"react-native-safe-area-context": "^0.7.3",
"react-native-screens": "^2.4.0",
"react-native-settings": "^0.2.3",
"react-native-share": "^3.2.0",
"react-native-sqlite-storage": "^5.0.0",
"react-native-svg": "^12.1.0",
"react-native-system-setting": "^1.7.4",
"react-native-tab-view": "^2.15.0",
"react-native-vector-icons": "6.6.0",
"react-native-webview": "^9.2.1",
"react-timer-mixin": "^0.13.4",
"rn-fetch-blob": "^0.12.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/runtime": "7.9.2",
"@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.58.0",
"react-test-renderer": "16.11.0"
},
"jest": {
"preset": "react-native"
}
}