forked from cds-snc/covid-alert-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 5.41 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "covidalert",
"version": "1.2.4",
"private": true,
"engines": {
"node": ">=12.13.1 || ^10"
},
"scripts": {
"postinstall": "patch-package",
"bundle-android": "yarn generate-translations && react-native bundle --dev false --platform android --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/",
"bundle-ios": "yarn generate-translations && react-native bundle --dev false --platform ios --entry-file index.js --bundle-output ios/main.jsbundle --assets-dest ios",
"codegen-protobuf": "pbjs -t static-module -o src/services/BackendService/covidshield/covidshield.js src/services/BackendService/covidshield/covidshield.proto && pbts -o src/services/BackendService/covidshield/covidshield.d.ts src/services/BackendService/covidshield/covidshield.js",
"generate-translations": "node translations.js",
"generate-translations:regional": "node translations-regional.js",
"generate-translations:android": "node translations-android.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pod-install": "pushd ios; bundle exec pod install; popd",
"run-android": "react-native run-android --variant debug",
"run-ios": "react-native run-ios --scheme Staging --simulator='iPhone 8'",
"start": "react-native start --reset-cache",
"clean": "react-native-clean-project",
"test": "jest --coverage",
"test:ios": "detox test --configuration=ios",
"test:android": "detox test --configuration=android",
"pre:test:ios": "detox build --configuration=ios",
"pre:test:android": "detox build --configuration=android",
"tsc": "tsc",
"onboard": "bundle exec fastlane onboard",
"onboard:dev_only": "bundle exec fastlane onboard_dev",
"get_latest_version": "bundle exec fastlane get_latest_version",
"deploy-android:staging": "bundle exec fastlane android build_and_deploy type:staging",
"deploy-android:production": "bundle exec fastlane android build_and_deploy type:production",
"deploy-ios:staging": "bundle exec fastlane ios build_and_deploy type:staging",
"deploy-ios:production": "bundle exec fastlane ios build_and_deploy type:production",
"deploy-ios:diawi": "bundle exec fastlane ios adhoc env:diawi",
"deploy-android:diawi": "bundle exec fastlane android adhoc env:diawi",
"deploy-ios:demo": "bundle exec fastlane ios build_and_deploy type:demo"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.9.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.5",
"@react-native-community/picker": "^1.8.1",
"@react-native-community/push-notification-ios": "^1.7.3",
"@react-navigation/native": "^5.7.1",
"@react-navigation/stack": "^5.14.3",
"@shopify/react-hooks": "^1.9.1",
"@shopify/react-i18n": "^3.0.1",
"@shopify/restyle": "^1.0.4",
"@types/semver": "^7.3.3",
"buffer": "^5.6.0",
"crypto-js": "^3.0.0",
"date-time-format-timezone": "^1.0.22",
"expo-barcode-scanner": "^10.1.2",
"intl": "^1.2.5",
"jsonschema": "^1.2.6",
"p-queue": "^6.6.2",
"react": "17.0.2",
"react-native": "0.64.0",
"react-native-background-fetch": "3.1.0",
"react-native-base64": "^0.2.1",
"react-native-config": "^1.4.2",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "1.8.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-localize": "^1.4.0",
"react-native-logs": "^2.2.1",
"react-native-markdown-display": "^6.1.0",
"react-native-permissions": "^2.1.4",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^2.18.1",
"react-native-secure-key-store": "^2.0.7",
"react-native-snap-carousel": "^3.9.1",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.1.0",
"react-native-system-setting": "1.7.4",
"react-native-unimodules": "^0.12.0",
"react-native-zip-archive": "^5.0.2",
"rn-faded-scrollview": "^1.0.10",
"semver": "^7.3.5",
"tweetnacl": "^1.0.3",
"url": "^0.11.0",
"yarn": "^1.22.10"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "4.19.0",
"**/@typescript-eslint/parser": "4.19.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/runtime": "^7.13.10",
"@react-native-community/eslint-config": "^2.0.0",
"@shopify/eslint-plugin": "^40.1.0",
"@testing-library/react-native": "^7.2.0",
"@types/crypto-js": "^3.1.45",
"@types/jest": "^26.0.21",
"@types/jest-when": "^2.7.2",
"@types/react-native": "^0.64.0",
"@types/react-native-base64": "^0.1.0",
"@types/react-native-snap-carousel": "^3.8.2",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"detox": "<18",
"eslint": "^7.22.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-when": "^3.2.1",
"metro-react-native-babel-preset": "^0.65.2",
"patch-package": "^6.2.2",
"prettier": "2.2.1",
"prettier-eslint": "^12.0.0",
"protobufjs": "^6.9.0",
"react-native-clean-project": "^3.6.3",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "17.0.2",
"ts-jest": "26.5.4",
"typescript": "^4.2.3",
"wait-for-expect": "^3.0.2"
}
}