-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.34 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
89
90
91
92
93
94
95
96
{
"name": "QuickENews",
"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 . --ext .js,.jsx,.ts,.tsx",
"clean": "rm -rf node_modules",
"reconnect": "adb reverse tcp:8081 tcp:8081 && yarn refresh",
"menu": "adb shell input keyevent 82",
"refresh": "adb shell input text \"RR\"",
"clear_cache:temp": "rm -rf $TMPDIR/react-*",
"clear_cache:watchman": "watchman watch-del-all",
"clear_cache:ios": "rm -rf ios/build/ModuleCache/*",
"clear_cache:npm": "npm cache clean --force",
"clear:modules": "rm -rf node_modules",
"clean:pods": "rm -rf ios/Pods/ && cd ios && pod install && cd ..",
"clear:cache": "npm-run-all --parallel clear_cache:*",
"clear:all": "npm-run-all clear:cache clear:modules && npm i && yarn clean:pods",
"clear:jest": "npx jest --clearCache"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.14.1",
"@react-native-community/google-signin": "^5.0.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-firebase/admob": "^10.8.1",
"@react-native-firebase/analytics": "^10.8.1",
"@react-native-firebase/app": "^10.8.1",
"@react-native-firebase/auth": "^10.8.1",
"@react-native-firebase/firestore": "^10.8.1",
"@react-native-firebase/messaging": "^10.8.1",
"@react-native-firebase/remote-config": "^11.0.0",
"@react-navigation/bottom-tabs": "^5.10.1",
"@react-navigation/drawer": "^5.12.4",
"@react-navigation/native": "^5.9.2",
"@react-navigation/stack": "^5.14.2",
"@shopify/restyle": "^1.4.0",
"d3-shape": "^2.0.0",
"formik": "^2.2.6",
"jsc-android": "^241213.1.0",
"moment": "^2.29.1",
"npm-run-all": "^4.1.5",
"react": "16.13.1",
"react-dom": "^17.0.1",
"react-native": "0.63.4",
"react-native-config": "^1.4.2",
"react-native-device-info": "^8.0.1",
"react-native-elements": "^3.3.1",
"react-native-email-link": "^1.10.0",
"react-native-fast-image": "^8.3.4",
"react-native-fbsdk": "^3.0.0",
"react-native-gesture-handler": "^1.9.0",
"react-native-iphone-x-helper": "^1.3.1",
"react-native-keyboard-aware-scroll-view": "^0.9.3",
"react-native-loading-spinner-overlay": "^2.0.0",
"react-native-reanimated": "^2.0.0-rc.2",
"react-native-redash": "14.2.1",
"react-native-render-html": "^5.1.0",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.17.1",
"react-native-svg": "^12.1.0",
"react-native-vector-icons": "^8.0.0",
"react-native-web": "^0.15.0",
"react-native-webview": "^11.2.3",
"yup": "^0.32.8"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@types/d3-scale": "^2.1.1",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-native-fbsdk": "^3.0.0",
"@types/react-native-loading-spinner-overlay": "^0.5.2",
"@types/react-native-vector-icons": "^6.4.6",
"@types/yup": "^0.29.3",
"eslint": "^7.3.1",
"eslint-config-react-native-wcandillon": "3.3.3",
"patch-package": "^6.2.2",
"typescript": "~3.9.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node",
"html"
]
}
}