-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
package.json
92 lines (92 loc) · 2.33 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
{
"name": "@react-native-firebase/app",
"version": "21.3.0",
"author": "Invertase <[email protected]> (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": {
"expo": ">=47.0.0",
"react": "*",
"react-native": "*"
},
"dependencies": {
"firebase": "10.13.2",
"superstruct": "^0.6.2"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.24.0",
"expo": "^50.0.21"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"sdkVersions": {
"ios": {
"firebase": "11.4.0",
"iosTarget": "13.0",
"macosTarget": "10.15"
},
"android": {
"minSdk": 21,
"targetSdk": 34,
"compileSdk": 34,
"firebase": "33.5.1",
"firebaseCrashlyticsGradle": "3.0.2",
"firebasePerfGradle": "1.4.2",
"gmsGoogleServicesGradle": "4.4.2",
"playServicesAuth": "21.2.0"
}
}
}