-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathpackage.json
102 lines (102 loc) · 4.02 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
{
"name": "react-native-firebase-tests",
"version": "16.1.0",
"private": true,
"scripts": {
"build:clean": "rimraf dist && rimraf android/build && rimraf android/app/build && rimraf android/.gradle && rimraf ios/build",
"prepare": "patch-package"
},
"dependencies": {
"@react-native-firebase/analytics": "16.1.0",
"@react-native-firebase/app": "16.1.0",
"@react-native-firebase/app-check": "16.1.0",
"@react-native-firebase/app-distribution": "16.1.0",
"@react-native-firebase/app-types": "6.7.2",
"@react-native-firebase/auth": "16.1.0",
"@react-native-firebase/crashlytics": "16.1.0",
"@react-native-firebase/database": "16.1.0",
"@react-native-firebase/dynamic-links": "16.1.0",
"@react-native-firebase/firestore": "16.1.0",
"@react-native-firebase/functions": "16.1.0",
"@react-native-firebase/in-app-messaging": "16.1.0",
"@react-native-firebase/installations": "16.1.0",
"@react-native-firebase/messaging": "16.1.0",
"@react-native-firebase/ml": "16.1.0",
"@react-native-firebase/perf": "16.1.0",
"@react-native-firebase/remote-config": "16.1.0",
"@react-native-firebase/storage": "16.1.0",
"postinstall-postinstall": "2.1.0",
"react": "17.0.2",
"react-native": "0.67.3"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^2.0.4",
"@react-native-firebase/private-tests-helpers": "0.0.13",
"a2a": "^0.2.0",
"babel-plugin-istanbul": "^6.0.0",
"detox": "^19.12.6",
"firebase": "^9.12.1",
"firebase-tools": "^11.15.0",
"jest-circus": "^29.2.0",
"jest-environment-node": "^29.2.0",
"jet": "^0.8.1",
"jsonwebtoken": "^8.5.1",
"metro-react-native-babel-preset": "0.73.2",
"mocha": "^10.1.0",
"nyc": "^15.0.1",
"patch-package": "^6.4.7",
"pod-install": "^0.1.37",
"react-native-codegen": "^0.0.13",
"react-native-port-patcher": "^1.0.5",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^14.0.1"
},
"detox": {
"test-runner": "mocha",
"specs": "e2e",
"runner-config": "e2e/.mocharc.js",
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/testing.app",
"build": "set -o pipefail && xcodebuild VALID_ARCHS=\"`uname -m`\" CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build | xcbeautify",
"type": "ios.simulator",
"device": {
"type": "iPhone 14"
}
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/testing.app",
"build": "export RCT_NO_LAUNCH_PACKAGER=true && set -o pipefail | xcodebuild CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ -workspace ios/testing.xcworkspace -scheme testing -configuration Release -sdk iphonesimulator -derivedDataPath ios/build | xcbeautify",
"type": "ios.simulator",
"device": {
"type": "iPhone 14"
}
},
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest lintDebug -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"device": {
"avdName": "TestingAVD"
}
},
"android.emu.debug.windows": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && gradlew.bat assembleDebug assembleAndroidTest lintDebug -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"device": {
"avdName": "TestingAVD"
}
},
"android.emu.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..",
"type": "android.emulator",
"device": {
"avdName": "TestingAVD"
}
}
}
}
}