-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.8 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": "helloworld",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android --main-activity com.zoontek.rnbootsplash.RNBootSplashActivity",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"regenerate-bootsplash": "react-native generate-bootsplash src/assets/bootsplash_logo_original.png --background-color=ffffff --logo-width=200 --assets-path=src/assets",
"postversion": "react-native-version",
"postinstall": "patch-package"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.4",
"@react-native-firebase/app": "^12.1.0",
"@react-native-firebase/auth": "^12.1.0",
"@react-native-firebase/firestore": "^12.1.0",
"@react-native-google-signin/google-signin": "^6.0.1",
"@react-navigation/drawer": "^5.12.5",
"@react-navigation/material-bottom-tabs": "^5.3.15",
"@react-navigation/native": "^5.9.4",
"@types/react-native-snap-carousel": "^3.8.3",
"mobx": "^6.3.1",
"mobx-react-lite": "^3.2.0",
"mobx-state-tree": "^5.0.1",
"mst-persistent-store": "^1.2.1",
"random-words": "^1.1.1",
"react": "17.0.1",
"react-native": "0.64.2",
"react-native-bootsplash": "^3.2.3",
"react-native-gesture-handler": "^1.10.3",
"react-native-immersive-bars": "1.0.2",
"react-native-keyboard-aware-scroll-view": "^0.9.4",
"react-native-paper": "^4.9.2",
"react-native-reanimated": "2.2.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.2.0",
"react-native-skeleton-content": "^1.0.22",
"react-native-snap-carousel": "^3.9.1",
"react-native-unimodules": "^0.13.3",
"react-native-vector-icons": "^8.1.0",
"use-async-effect": "^2.2.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/random-words": "^1.1.1",
"@types/react-native": "^0.64.10",
"@types/react-native-vector-icons": "^6.4.6",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"react-native-rename": "^2.9.0",
"react-native-version": "^4.0.0",
"react-test-renderer": "17.0.1",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^17",
"react-native-skeleton-content/react-native-reanimated": "2.2.0"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"react-native-unimodules": {
"android": {
"exclude": [
"expo-constants",
"expo-file-system",
"expo-image-loader",
"expo-permissions",
"unimodules-barcode-scanner-interface",
"unimodules-camera-interface",
"unimodules-constants-interface",
"unimodules-face-detector-interface",
"unimodules-file-system-interface",
"unimodules-sensors-interface",
"unimodules-task-manager-interface"
]
},
"ios": {
"exclude": [
"expo-constants",
"expo-file-system",
"expo-image-loader",
"expo-permissions",
"unimodules-barcode-scanner-interface",
"unimodules-camera-interface",
"unimodules-constants-interface",
"unimodules-face-detector-interface",
"unimodules-file-system-interface",
"unimodules-sensors-interface",
"unimodules-task-manager-interface"
]
}
}
}