forked from MohGovIL/hamagen-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·116 lines (116 loc) · 3.77 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "hamagen",
"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"
},
"dependencies": {
"@react-native-community/async-storage": "1.7.1",
"@react-native-community/cli": "2.9.0",
"@react-native-community/masked-view": "https://github.com/greenyossi/react-native-masked-view.git",
"@react-native-community/netinfo": "5.6.2",
"@react-navigation/bottom-tabs": "5.0.3",
"@react-navigation/drawer": "5.0.3",
"@react-navigation/native": "5.0.3",
"@react-navigation/stack": "5.0.3",
"@redux-offline/redux-offline": "2.5.2-native.3",
"@turf/turf": "05.1.6",
"async-lock": "1.2.2",
"axios": "0.19.0",
"events": "3.0.0",
"haversine": "1.1.1",
"latlon-geohash": "02.0.0",
"lodash": "4.17.15",
"lottie-ios": "03.1.6",
"lottie-react-native": "03.3.2",
"moment": "2.24.0",
"moment-timezone": "0.5.28",
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-animatable": "1.3.3",
"react-native-background-fetch": "2.7.1",
"react-native-background-geolocation": "3.4.2",
"react-native-background-timer": "02.2.0",
"react-native-device-info": "5.4.0",
"react-native-extra-dimensions-android": "https://github.com/greenyossi/react-native-extra-dimensions-android.git",
"react-native-firebase": "5.6.0",
"react-native-gesture-handler": "1.5.2",
"react-native-network-info": "5.2.1",
"react-native-permissions": "2.0.10",
"react-native-reanimated": "1.4.0",
"react-native-safe-area-context": "0.7.3",
"react-native-screens": "2.0.0-beta.2",
"react-native-settings": "0.2.3",
"react-native-sha1": "1.2.3",
"react-native-splash-screen": "https://github.com/greenyossi/react-native-splash-screen.git",
"react-native-sqlite-storage": "4.1.0",
"react-native-uuid-generator": "6.1.1",
"react-native-webview": "9.0.1",
"react-native-wifi-reborn": "2.4.0",
"react-redux": "7.1.3",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"rn-fetch-blob": "0.12.0",
"sha256": "00.2.0"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/runtime": "7.6.2",
"@react-native-community/eslint-config": "0.0.5",
"@types/async-lock": "1.1.1",
"@types/lodash": "4.14.149",
"@types/node": "13.1.0",
"@types/react-native-background-timer": "02.0.0",
"@types/react-native-uuid-generator": "4.0.0",
"@types/react-redux": "7.1.5",
"@types/jest": "24.0.24",
"@types/react": "16.9.19",
"@types/react-native": "0.60.25",
"@types/react-test-renderer": "16.9.1",
"@typescript-eslint/eslint-plugin": "2.12.0",
"@typescript-eslint/parser": "2.12.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.9.0",
"cross-fetch": "3.0.4",
"eslint": "6.5.1",
"eslint-config-airbnb": "17.1.0",
"eslint-import-resolver-reactnative": "1.0.2",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-hooks": "1.6.0",
"jest": "24.9.0",
"jest-fetch-mock": "3.0.3",
"metro-react-native-babel-preset": "0.56.0",
"mock-async-storage": "2.2.0",
"react-test-renderer": "16.9.0",
"redux-mock-store": "1.5.4",
"tslint": "5.17.0",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"tslint-react": "4.0.0",
"typescript": "3.7.3"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"./__mocks__/setupFile.js"
],
"transformIgnorePatterns": [
"react-native-device-info"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}