forked from theappbusiness/covid-tracker-react-native
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
221 lines (221 loc) · 9.43 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
{
"name": "covid",
"version": "3.0.0",
"private": true,
"resolutions": {
"browserslist": ">=4.16.5",
"react-devtools-core": "^4.13.4"
},
"scripts": {
"android": "yarn generate:git-hash && react-native run-android --variant=debug --appId=com.joinzoe.covid_zoe.qa",
"android:devices": " ~/Library/Android/sdk/emulator/emulator -list-avds",
"android:local": "ENVFILE=.env.local yarn android",
"android:menu": "adb shell input keyevent 82",
"android:staging": "ENVFILE=.env.staging yarn android",
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --dev=false --platform='ios' --assets-dest ios",
"bump:major": "npm version major --no-git-tag-version && bundle exec fastlane bump",
"bump:minor": "npm version minor --no-git-tag-version && bundle exec fastlane bump",
"bump:patch": "npm version patch --no-git-tag-version && bundle exec fastlane bump",
"clean:git": "git checkout develop && git pull && git fetch --all --prune && for branch in `git branch -vv | grep ': gone]' | awk '{print $1}'`; do git branch -D $branch; done",
"clear:metro": "rm -rf $TMPDIR/metro-*",
"detox:clean": "detox clean-framework-cache && detox build-framework-cache",
"fastlane": "ENVFILE=.env bundle exec fastlane",
"fastlane:android:release": "yarn fastlane android release",
"fastlane:ios:certificates": "yarn fastlane ios certificates",
"fastlane:ios:register": "bundle exec fastlane register && bundle exec fastlane match adhoc -a com.joinzoe.covid-zoe.qa --force_for_new_devices",
"fastlane:ios:release": "yarn fastlane ios release",
"generate:git-hash": "ts-node --transpile-only ./scripts/generate-git-hash.ts",
"generate:icon-names": "ts-node --transpile-only ./scripts/generate-icon-names.ts",
"i18n:sanitise": "ts-node --transpile-only ./scripts/i18n-sanitise.ts",
"install:pod": "cd ios && pod install",
"install:private-assets": "./.github/install_private_assets.sh",
"ios": "yarn generate:git-hash && react-native run-ios --simulator='iPhone 8' --scheme 'Covid Debug' --configuration Debug",
"ios:devices": "xcrun simctl list",
"ios:local": "ENVFILE=.env.local yarn ios",
"ios:staging": "ENVFILE=.env.staging yarn ios",
"ios:storybook": "ENVFILE=.env.storybook yarn ios",
"lint": "eslint assets/ src/ theme/ --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"lint:ci": "yarn lint --format junit --output-file ~/reports/eslint.xml",
"lint:fix": "yarn lint --fix",
"metro-empty-cache": "rm -rf $TMPDIR/metro-cache",
"mock-server": "ts-node --transpile-only ./mock-server/mockServer.ts --watch",
"postinstall": "ts-node --transpile-only ./scripts/postinstall.ts",
"prettier": "prettier --check 'src/**/*.(js|jsx|ts|tsx)' --ignore-path .gitignore",
"prettier:fix": "yarn prettier --write",
"lint-and-prettier-fix": "yarn lint:fix && yarn prettier:fix",
"reset": "watchman watch-del-all && rm -rf node_modules && rm -rf $TMPDIR/metro-* && rm -rf $TMPDIR/haste-map-*",
"start": "yarn generate:git-hash && react-native start",
"start:reset": "yarn start --reset-cache",
"storybook": "start-storybook -p 7007",
"storybook-component": "./storybook/scripts/create-component.sh",
"test": "jest --maxWorker=2 --runInBand --detectOpenHandles --coverage --silent",
"test:coverage": "jest --maxWorker=2 --coverage --reporters=default --reporters=jest-junit --ci",
"test:e2e:ios": "detox test ./e2e --configuration ios.sim.release",
"test:i18n": "ts-node --transpile-only ./scripts/i18n-check-locale.ts",
"test:updateSnapshots": "jest -u",
"test:watch": "jest --watch",
"web": "expo start --web"
},
"dependencies": {
"@ozziedave/react-native-multi-slider": "^2.2.5",
"@react-native-async-storage/async-storage": "1.15.0",
"@react-native-community/masked-view": "0.1.10",
"@react-native-firebase/analytics": "14.11.0",
"@react-native-firebase/app": "14.11.0",
"@react-native-firebase/crashlytics": "14.11.0",
"@react-native-firebase/database": "^14.11.0",
"@react-native-firebase/dynamic-links": "^14.11.0",
"@react-native-firebase/in-app-messaging": "14.11.0",
"@react-native-firebase/installations": "^14.11.0",
"@react-native-firebase/messaging": "14.11.0",
"@react-native-firebase/perf": "^14.11.0",
"@react-native-firebase/remote-config": "14.11.0",
"@react-navigation/bottom-tabs": "6.0.9",
"@react-navigation/drawer": "6.1.8",
"@react-navigation/material-top-tabs": "6.0.6",
"@react-navigation/native": "6.0.6",
"@react-navigation/native-stack": "^6.6.2",
"@react-navigation/stack": "6.0.11",
"@reduxjs/toolkit": "1.6.0",
"@sentry/react-native": "3.2.8",
"@types/i18n-js": "3.0.3",
"@types/node": "13.13.6",
"@types/react-native-calendar-picker": "7.0.2",
"@types/react-redux": "7.1.12",
"@types/redux-persist": "4.3.1",
"@types/styled-components": "5.1.5",
"@types/yup": "0.26.37",
"appcenter": "3.1.3",
"appcenter-analytics": "3.1.3",
"appcenter-crashes": "3.1.3",
"axios": "0.21.2",
"country-list": "2.2.0",
"csvtojson": "2.0.10",
"dotenv": "10.0.0",
"expo": "42.0.0",
"expo-analytics-amplitude": "10.2.0",
"expo-application": "3.2.0",
"expo-asset": "8.3.3",
"expo-constants": "11.0.1",
"expo-device": "3.3.0",
"expo-file-system": "11.1.3",
"expo-font": "9.2.1",
"expo-intent-launcher": "9.1.0",
"expo-linking": "2.3.1",
"expo-local-authentication": "11.1.1",
"expo-localization": "10.2.0",
"expo-notifications": "0.12.3",
"expo-sharing": "9.2.1",
"expo-updates": "0.8.2",
"expo-web-browser": "9.2.0",
"formik": "2.2.6",
"i18n-js": "3.8.0",
"lodash": "4.17.21",
"moment": "2.29.2",
"native-base": "2.13.14",
"react": "17.0.2",
"react-dom": "16.13.1",
"react-native": "0.65.1",
"react-native-calendar-picker": "7.1.2",
"react-native-config": "1.4.4",
"react-native-easy-markdown": "2.0.0",
"react-native-gesture-handler": "1.10.2",
"react-native-linear-gradient": "2.5.6",
"react-native-modal-dropdown": "git+https://github.com/riyga25/react-native-modal-dropdown.git",
"react-native-pager-view": "^5.4.24",
"react-native-progress": "4.1.2",
"react-native-reanimated": "2.2.3",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "^3.13.1",
"react-native-shimmer-placeholder": "2.0.6",
"react-native-snap-carousel": "4.0.0-beta.6",
"react-native-splash-screen": "3.2.0",
"react-native-svg": "12.1.1",
"react-native-tab-view": "2.16.0",
"react-native-toast-message": "2.1.0",
"react-native-unimodules": "0.14.5",
"react-native-view-shot": "3.1.2",
"react-native-webview": "11.6.2",
"react-redux": "7.2.0",
"react-string-replace": "0.4.4",
"redux": "4.0.5",
"redux-persist": "6.0.0",
"redux-thunk": "2.3.0",
"rn-swipe-gestures": "1.0.3",
"sentry-expo": "4.0.3",
"string-natural-compare": "3.0.1",
"styled-components": "5.2.1",
"url-parse": "1.5.9",
"victory-native": "35.3.3",
"yup": "0.28.5"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@sambego/storybook-state": "^2.0.1",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"@testing-library/react-native": "7.2.0",
"@types/body-parser": "1.19.0",
"@types/deep-diff": "1.0.1",
"@types/detox": "17.14.0",
"@types/express": "4.17.6",
"@types/jasmine": "3.6.2",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.169",
"@types/react": "17.0.31",
"@types/react-native": "0.65.9",
"@types/react-native-modal-dropdown": "0.7.0",
"@types/react-test-renderer": "17.0.1",
"@types/redux-mock-store": "1.0.2",
"@types/string-natural-compare": "3.0.0",
"@types/url-parse": "1.4.3",
"@types/uuid": "7.0.3",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"axios-mock-adapter": "1.19.0",
"babel-jest": "26.6.3",
"babel-loader": "^8.2.5",
"babel-preset-expo": "8.4.1",
"body-parser": "1.19.0",
"child_process": "1.0.2",
"clean-deep": "3.4.0",
"deep-diff": "1.0.2",
"detox": "19.4.2",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-universe": "3.0.0",
"eslint-formatter-summary-chart": "^0.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-unused-imports": "^1.1.1",
"expo-cli": "4.12.1",
"express": "4.17.1",
"fbjs-scripts": "3.0.0",
"i18next-parser": "4.3.0",
"jest": "27.3.1",
"jest-circus": "27.3.1",
"jest-expo": "43.0.1",
"jest-junit": "11.1.0",
"prettier": "2.3.0",
"react-native-codegen": "0.0.9",
"react-test-renderer": "17.0.2",
"redux-mock-store": "1.5.4",
"ts-node": "8.6.2",
"typescript": "4.4.4",
"uuid": "8.3.2"
}
}