-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
88 lines (88 loc) · 3.75 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
{
"name": "CovidShield",
"version": "0.0.1",
"private": true,
"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 scripts/translations.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"pod-install": "pushd ios; bundle exec pod install; popd",
"run-android": "yarn generate-translations && react-native run-android --variant debug",
"run-ios": "yarn generate-translations && react-native run-ios",
"start": "yarn generate-translations && react-native start --reset-cache",
"test": "yarn generate-translations && jest",
"tsc": "yarn generate-translations && tsc"
},
"dependencies": {
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.0",
"@react-native-community/push-notification-ios": "^1.2.0",
"@react-navigation/drawer": "^5.7.2",
"@react-navigation/native": "^5.3.0",
"@react-navigation/stack": "^5.3.2",
"@shopify/react-hooks": "^1.9.1",
"@shopify/react-i18n": "^3.0.1",
"@shopify/restyle": "^1.0.4",
"add": "^2.0.6",
"buffer": "^5.6.0",
"crypto-js": "^3.0.0",
"intl": "^1.2.5",
"lottie-ios": "3.1.8",
"lottie-react-native": "^3.4.0",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-background-fetch": "^3.1.0",
"react-native-config": "^1.1.0",
"react-native-gesture-handler": "^1.6.1",
"react-native-localize": "^1.4.0",
"react-native-markdown-display": "^6.1.0",
"react-native-permissions": "^2.1.4",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^3.0.2",
"react-native-screens": "^2.7.0",
"react-native-sensitive-info": "^5.5.5",
"react-native-snap-carousel": "^3.9.0",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.1.0",
"react-native-system-setting": "1.7.4",
"react-native-zip-archive": "^5.0.2",
"reanimated-bottom-sheet": "^1.0.0-alpha.20",
"tweetnacl": "^1.0.3",
"yarn": "^1.22.4"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^1.0.0",
"@shopify/eslint-plugin": "^36.0.2",
"@types/crypto-js": "^3.1.45",
"@types/jest": "^24.0.24",
"@types/jest-when": "^2.7.1",
"@types/react-native": "^0.62.0",
"@types/react-native-snap-carousel": "^3.8.1",
"@types/react-test-renderer": "16.9.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-jest": "25.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.5.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "25.1.0",
"jest-when": "^2.7.1",
"metro-react-native-babel-preset": "^0.58.0",
"patch-package": "^6.2.2",
"prettier": "1.19.1",
"prettier-eslint": "^9.0.0",
"protobufjs": "^6.9.0",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.11.0",
"reactotron-react-native": "^3.2.1",
"ts-jest": "25.2.1",
"typescript": "^3.8.3"
}
}