This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
110 lines (110 loc) · 4.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
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
{
"name": "reactnativeapp",
"version": "0.0.1",
"private": true,
"workspaces": [
"app/*",
"packages/*"
],
"scripts": {
"android": "yarn react-native run-android",
"android-playground": "yarn react-native run-android --appFolder playground",
"code-push": "node ./scripts/codePush.js",
"deploy-translations": "yarn monorepo-babel-node packages/localization/src/scripts/Deployer.js",
"untranslated-strings": "yarn monorepo-babel-node packages/localization/src/scripts/UntranslatedStrings.js",
"e2e-aphone": "yarn detox build -c android.emu.debug && yarn detox test -c android.emu.debug",
"e2e-iphone": "yarn detox build -c ios.sim.release && yarn detox test -c ios.sim.release",
"e2e-ipad": "yarn detox build -c ios.sim.tablet.release && yarn detox test -c ios.sim.tablet.release",
"typecheck": "adeira-flow-bin",
"graphql": "kiwicom-fetch-schema",
"ios": "yarn react-native run-ios",
"lint": "yarn jest --config=.jest-eslint.config.js",
"postinstall": "monorepo-babel-node ./scripts/configureApplication.js && jetify",
"relay": "adeira-relay-compiler",
"release-android": "yarn monorepo-babel-node ./scripts/buildAndroidSnapshots.js",
"release-ios": "yarn monorepo-babel-node ./scripts/releaseFramework.js",
"start": "yarn react-native start",
"test": "yarn monorepo-run-tests -i",
"test-ci": "yarn typecheck && yarn lint && yarn test && yarn relay --validate"
},
"dependencies": {
"@adeira/fetch": "^1.0.0",
"@babel/register": "^7.7.7",
"@kiwicom/mobile-account": "*",
"@kiwicom/mobile-shared": "^0",
"@kiwicom/react-native-ancillary-factory": "^0",
"@kiwicom/react-native-app-hotels": "^0",
"@kiwicom/react-native-fast-track": "^0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"detox": "^14.8.1",
"dotenv": "^8.2.0",
"jsc-android": "245459.0.0",
"react": "16.8.6",
"react-native": "0.60.5",
"react-native-app-registry-components-to-constants": "0.0.1",
"react-native-code-push": "5.7.0"
},
"peerDependencies": {
"graphql": "^14"
},
"devDependencies": {
"@adeira/eslint-config": "^0.7.0",
"@adeira/flow-bin": "^0.1.0",
"@adeira/monorepo-utils": "^0.2.0",
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/runtime": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-react-native": "^3.7.0",
"flow-bin": "^0.115.0",
"jest": "^24.9.0",
"jetifier": "^1.6.4",
"metro": "^0.55.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.18.2",
"react-native-dotenv": "^0.2.0",
"react-test-renderer": "16.8.6",
"regenerator-runtime": "^0.13.3"
},
"detox": {
"configurations": {
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/reactNativeApp.app",
"build": "xcodebuild -workspace ios/reactNativeApp.xcworkspace -scheme reactNativeApp -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
},
"ios.sim.tablet.release": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/reactNativeApp.app",
"build": "xcodebuild -workspace ios/reactNativeApp.xcworkspace -scheme reactNativeApp -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPad Air 2"
}
},
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"name": "e2e_emulator"
}
},
"test-runner": "jest"
},
"rnkiwimobile": {
"code-push-target-binary-version": "16.0.0"
},
"resolutions": {
"@adeira/js": "^0.2.0",
"@adeira/monorepo-utils": "^0.2.0",
"date-fns": "^2.8.1"
}
}