forked from invertase/react-native-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.15 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
{
"name": "@react-native-firebase/app",
"version": "15.0.0",
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "genversion --semi lib/version.js && npm run build:version",
"build:version": "node ./scripts/genversion-ios && node ./scripts/genversion-android",
"build:clean": "rimraf android/build && rimraf ios/build",
"build:plugin": "rimraf plugin/build && tsc --build plugin",
"lint:plugin": "eslint plugin/src/*",
"prepare": "npm run build && npm run build:plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-firebase/tree/main/packages/app"
},
"license": "Apache-2.0",
"keywords": [
"react",
"admob",
"auth",
"config",
"digits",
"fabric",
"functions",
"phone-auth",
"sms",
"firestore",
"cloud-firestore",
"datastore",
"remote-config",
"transactions",
"react-native",
"react-native-firebase",
"firebase",
"fcm",
"apn",
"gcm",
"analytics",
"messaging",
"database",
"android",
"ios",
"crash",
"firestack",
"performance",
"firestore",
"dynamic-links",
"crashlytics"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"@expo/config-plugins": "^4.1.5",
"opencollective-postinstall": "^2.0.1",
"superstruct": "^0.6.2"
},
"publishConfig": {
"access": "public"
},
"sdkVersions": {
"ios": {
"firebase": "9.2.0"
},
"android": {
"minSdk": 19,
"targetSdk": 31,
"compileSdk": 31,
"buildTools": "30.0.3",
"firebase": "30.1.0",
"firebaseCrashlyticsGradle": "2.9.0",
"firebasePerfGradle": "1.4.1",
"gmsGoogleServicesGradle": "4.3.10",
"playServicesAuth": "20.2.0"
}
}
}