|
13 | 13 | "detox:ios": "./detox.sh ios", |
14 | 14 | "detox:android": "./detox.sh android", |
15 | 15 | "lint": "eslint . --ext .js,.jsx,.ts,.tsx", |
16 | | - "generate": "plop" |
| 16 | + "generate": "plop", |
| 17 | + "run-android:stagingRelease": "ENVFILE=.env.staging react-native run-android --variant=release", |
| 18 | + "run-android:productionRelease": "ENVFILE=.env.prod react-native run-android --variant=release", |
| 19 | + "run-ios:stagingRelease": "react-native run-ios --scheme STAGING --configuration Release", |
| 20 | + "run-ios:productionRelease": "react-native run-ios --scheme PRODUCTION --configuration Release", |
| 21 | + "detox-build:androidRelease": "detox build -c android.emu.release", |
| 22 | + "detox-test:androidRelease": "detox test -c android.emu.release", |
| 23 | + "detox-build:iosRelease": "detox build -c ios.sim.release", |
| 24 | + "detox-test:iosRelease": "detox test -c ios.sim.release", |
| 25 | + "bump-patch": "npm version patch --no-git-tag-version && bundle exec fastlane bump_badge", |
| 26 | + "bump-minor": "npm version minor --no-git-tag-version && bundle exec fastlane bump_badge", |
| 27 | + "bump-major": "npm version major --no-git-tag-version && bundle exec fastlane bump_badge", |
| 28 | + "validate-typescript": "tsc --noEmit", |
| 29 | + "uninstall-android": "adb uninstall com.helloworld", |
| 30 | + "clear-android": "adb shell pm clear com.helloworld", |
| 31 | + "uninstall-iOS": "xcrun simctl uninstall booted org.reactjs.native.example.HelloWorld", |
| 32 | + "build-qa:android": "bundle exec fastlane android bump_badge_build_staging" |
17 | 33 | }, |
18 | 34 | "dependencies": { |
19 | 35 | "@react-native-async-storage/async-storage": "^1.15.4", |
|
39 | 55 | "react-native-flipper": "^0.90.2", |
40 | 56 | "react-native-gesture-handler": "^1.10.3", |
41 | 57 | "react-native-keychain": "^6.2.0", |
| 58 | + "react-native-paper": "^4.8.1", |
42 | 59 | "react-native-permissions": "^3.0.1", |
43 | 60 | "react-native-reanimated": "^2.1.0", |
44 | 61 | "react-native-safe-area-context": "^3.1.9", |
|
66 | 83 | "@storybook/addon-ondevice-knobs": "^5.3.25", |
67 | 84 | "@storybook/react-native": "^5.3.25", |
68 | 85 | "@testing-library/jest-native": "^4.0.1", |
69 | | - "@testing-library/react-hooks": "^5.1.0", |
| 86 | + "@testing-library/react-hooks": "^6.0.0", |
70 | 87 | "@testing-library/react-native": "^7.2.0", |
71 | 88 | "@types/detox": "^17.14.0", |
72 | 89 | "@types/jest": "^26.0.20", |
|
75 | 92 | "@types/react-test-renderer": "^16.9.2", |
76 | 93 | "@types/styled-components-react-native": "^5.1.0", |
77 | 94 | "@types/styled-system": "^5.1.10", |
| 95 | + "babel-core": "^6.26.3", |
78 | 96 | "babel-jest": "^26.6.3", |
79 | 97 | "babel-loader": "^8.2.2", |
80 | 98 | "babel-plugin-module-resolver": "^4.1.0", |
|
96 | 114 | "react-dom": "17.0.1", |
97 | 115 | "react-native-bundle-visualizer": "^2.2.1", |
98 | 116 | "react-test-renderer": "17.0.1", |
| 117 | + "regenerator-runtime": "^0.13.7", |
99 | 118 | "typescript": "^3.8.3" |
100 | 119 | }, |
101 | 120 | "resolutions": { |
|
0 commit comments