-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
3728 lines (3728 loc) · 138 KB
/
package-lock.json
File metadata and controls
3728 lines (3728 loc) · 138 KB
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "blogly",
"version": "0.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
"integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
"requires": {
"@babel/highlight": "^7.8.3"
}
},
"@babel/helper-annotate-as-pure": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
"integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-function-name": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz",
"integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==",
"requires": {
"@babel/helper-get-function-arity": "^7.8.3",
"@babel/template": "^7.8.3",
"@babel/types": "^7.8.3"
}
},
"@babel/helper-get-function-arity": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz",
"integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-module-imports": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
"integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz",
"integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==",
"requires": {
"@babel/types": "^7.8.3"
}
},
"@babel/highlight": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz",
"integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==",
"requires": {
"chalk": "^2.0.0",
"esutils": "^2.0.2",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.8.8",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.8.tgz",
"integrity": "sha512-mO5GWzBPsPf6865iIbzNE0AvkKF3NE+2S3eRUpE+FE07BOAkXh6G+GW/Pj01hhXjve1WScbaIO4UlY1JKeqCcA=="
},
"@babel/runtime": {
"version": "7.8.7",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.7.tgz",
"integrity": "sha512-+AATMUFppJDw6aiR5NVPHqIQBlV/Pj8wY/EZH+lmvRdUo9xBaz/rF3alAwFJQavvKfeOlPE7oaaDHVbcySbCsg==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/template": {
"version": "7.8.6",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz",
"integrity": "sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==",
"requires": {
"@babel/code-frame": "^7.8.3",
"@babel/parser": "^7.8.6",
"@babel/types": "^7.8.6"
}
},
"@babel/types": {
"version": "7.8.7",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.7.tgz",
"integrity": "sha512-k2TreEHxFA4CjGkL+GYjRyx35W0Mr7DP5+9q6WMkyKXB+904bYmG40syjMFV0oLlhhFCwWl0vA0DyzTDkwAiJw==",
"requires": {
"esutils": "^2.0.2",
"lodash": "^4.17.13",
"to-fast-properties": "^2.0.0"
}
},
"@emotion/is-prop-valid": {
"version": "0.8.8",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
"requires": {
"@emotion/memoize": "0.7.4"
}
},
"@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
},
"@emotion/stylis": {
"version": "0.8.5",
"resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
"integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
},
"@emotion/unitless": {
"version": "0.7.5",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
"integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
},
"@firebase/analytics": {
"version": "0.2.13",
"resolved": "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.2.13.tgz",
"integrity": "sha512-FAvpVS3dmfeCcYdxl7msz3Fr9OOLp/EYfDAx4T1yKi3dfTOXALH6pJK1hNjWjmGMq0qAWPmOFfAdpzd13Q0Uag==",
"requires": {
"@firebase/analytics-types": "0.2.6",
"@firebase/component": "0.1.5",
"@firebase/installations": "0.4.2",
"@firebase/util": "0.2.40",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/analytics-types": {
"version": "0.2.6",
"resolved": "https://registry.npmjs.org/@firebase/analytics-types/-/analytics-types-0.2.6.tgz",
"integrity": "sha512-G4wGsWCxVibT4vHHTzFXi0uXk91upPUMYQyKnVEq4E9Qr491+EyyT3xH/6k+Hxj4/bGeK0lhJ4czMd1R5cOWwg=="
},
"@firebase/app": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.5.4.tgz",
"integrity": "sha512-a+Z13FB/Om3JAv6wTUUW/X8ikRmK66fvbLCGPUKoUtqKow1zxeUelznyKNhF4/WA2wxpo3w5OXzp0G9U09Lecw==",
"requires": {
"@firebase/app-types": "0.5.1",
"@firebase/component": "0.1.5",
"@firebase/logger": "0.1.35",
"@firebase/util": "0.2.40",
"dom-storage": "2.1.0",
"tslib": "1.10.0",
"xmlhttprequest": "1.8.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/app-types": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/@firebase/app-types/-/app-types-0.5.1.tgz",
"integrity": "sha512-fhe4KxEoRLD596tuIkvBXVHedVByI5ALzf5nMraOXsnBxLY0gKcMSXQGwwPxZyeUt/S1VM8DRVXOg9shegEO7g=="
},
"@firebase/auth": {
"version": "0.13.5",
"resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-0.13.5.tgz",
"integrity": "sha512-0s/ULeqstzQ/Xi0ZgJnasYXH4WtTRaa9LztPv9gXHjwmOt/GtFnRUeW0RqDCmF4A2uikanMFm5+wtm80BkfpTg==",
"requires": {
"@firebase/auth-types": "0.9.5"
}
},
"@firebase/auth-interop-types": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/@firebase/auth-interop-types/-/auth-interop-types-0.1.2.tgz",
"integrity": "sha512-FW4wNZbGSBpA8SgJy8EFdx0lPGm8a25zojI48kbV+QNn4EizJ1jbLPGtmBeEJJPFI4Ij+9EuCbsV1iwelZzDaA=="
},
"@firebase/auth-types": {
"version": "0.9.5",
"resolved": "https://registry.npmjs.org/@firebase/auth-types/-/auth-types-0.9.5.tgz",
"integrity": "sha512-nXruvfY/S3q2PhKR/vMfWGkn/zZY0JTT07R/aEdClYRDV7AZDhmgCi3m5HZmj+bMPz7PeZT/w1tUuNLjUqJV2A=="
},
"@firebase/component": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/@firebase/component/-/component-0.1.5.tgz",
"integrity": "sha512-oxRmOEIW3YbJVchLZKXiP4nJlKDCNLCQRdFdcO23IfJnaWePZofh4v5nT3XSJ6ouWlGIpENLZgoXjv2QrGFXfg==",
"requires": {
"@firebase/util": "0.2.40",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/database": {
"version": "0.5.21",
"resolved": "https://registry.npmjs.org/@firebase/database/-/database-0.5.21.tgz",
"integrity": "sha512-NlndeAr88Rfi6LbeHF0/YaTkapns6K6bLGVu2w22oivHjZxLfR4aoyN2172yzhPpwEPN7iYhkkz/ZQi11CzL4g==",
"requires": {
"@firebase/auth-interop-types": "0.1.2",
"@firebase/component": "0.1.5",
"@firebase/database-types": "0.4.11",
"@firebase/logger": "0.1.35",
"@firebase/util": "0.2.40",
"faye-websocket": "0.11.3",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/database-types": {
"version": "0.4.11",
"resolved": "https://registry.npmjs.org/@firebase/database-types/-/database-types-0.4.11.tgz",
"integrity": "sha512-+SiBjnufVhRSJg078feQWH7yHQncRjX+23NUgvBCRFXNBwUVvmPenNXYhCpF8XbhSOrC7BvfcRZTGqeI7+ZUdg==",
"requires": {
"@firebase/app-types": "0.5.1"
}
},
"@firebase/firestore": {
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/@firebase/firestore/-/firestore-1.12.2.tgz",
"integrity": "sha512-Obv+jqyAvYEBZHXSQs5EI0q5R8wylVz/GHHMWtkxAWpXvZjpTYZuKcvxJ9Ugi9SwhgvxbdmmnrI/4FwjQjYi7Q==",
"requires": {
"@firebase/component": "0.1.8",
"@firebase/firestore-types": "1.10.1",
"@firebase/logger": "0.2.0",
"@firebase/util": "0.2.43",
"@firebase/webchannel-wrapper": "0.2.38",
"@grpc/proto-loader": "^0.5.0",
"grpc": "1.24.2",
"tslib": "1.11.1"
},
"dependencies": {
"@firebase/component": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/@firebase/component/-/component-0.1.8.tgz",
"integrity": "sha512-kzuCF+NVympQk3gcsHldOmDRVPVndECi6O9Wvd47HTEQYO9HsZWfOM1fHUvvHAijSzNi16p4NSM7UziuBQBL4w==",
"requires": {
"@firebase/util": "0.2.43",
"tslib": "1.11.1"
}
},
"@firebase/firestore-types": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-1.10.1.tgz",
"integrity": "sha512-vyKdm+AYUFT8XeUX62IOqaqPFCs/mAMoSEsqIz9HnSVsqCw/IocNjtjSa+3M80kRw4V8fI7JI+Xz6Wg5VJXLqA=="
},
"@firebase/logger": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@firebase/logger/-/logger-0.2.0.tgz",
"integrity": "sha512-qOMnAh1JY9NkYUEy3iFviiFq0dCvk6qN2DsRy2Y7eAhHR6RqwA47l1kI+0MIXmSzlJ9akXjWAXxV5ijzr68Big=="
},
"@firebase/util": {
"version": "0.2.43",
"resolved": "https://registry.npmjs.org/@firebase/util/-/util-0.2.43.tgz",
"integrity": "sha512-4gGlvcoOJ48xO6PH59UOHLjvImdYXANF/1d0ao60fbiJDIKxJqMksXw3UF2zsUrRkyCOqIDLeiVuF18vffXP+g==",
"requires": {
"tslib": "1.11.1"
}
},
"@firebase/webchannel-wrapper": {
"version": "0.2.38",
"resolved": "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.2.38.tgz",
"integrity": "sha512-mp1XmAJsuqaSWm5WQYo7R0zfZWe9EmwMCxsxkKr+ubLOumyNy4NG5aV45hEpFTosQv4myXpiCiS4GFE9mNqLZQ=="
}
}
},
"@firebase/firestore-types": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-1.9.1.tgz",
"integrity": "sha512-w3pT+RMQOORS8Tvf6wCaW8sq8hklPS4FkWSGCyo/gIbATP7pG8rvQDihN1x6D3if1jILWiZ/uPyl0eazm+MGzw=="
},
"@firebase/functions": {
"version": "0.4.32",
"resolved": "https://registry.npmjs.org/@firebase/functions/-/functions-0.4.32.tgz",
"integrity": "sha512-0v8YkEElryo7Apx1S+eTUBR/yz/Gatj064hy37AWNN9n5oUjRyrkwl40/YywFPw15AZPB8ItoEx+wJBnyFjgUw==",
"requires": {
"@firebase/component": "0.1.5",
"@firebase/functions-types": "0.3.14",
"@firebase/messaging-types": "0.4.2",
"isomorphic-fetch": "2.2.1",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/functions-types": {
"version": "0.3.14",
"resolved": "https://registry.npmjs.org/@firebase/functions-types/-/functions-types-0.3.14.tgz",
"integrity": "sha512-G7wq6fahQuXbiSf/PbffWnWXNaYKsT9ECvps/2hTKXevZfeWEhDju40c/XFIDI2dcSnTfOYiKoRP8Mp7hi7/CQ=="
},
"@firebase/installations": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@firebase/installations/-/installations-0.4.2.tgz",
"integrity": "sha512-g8GDRRikxY7U1rUe9xdAKShCz2/S5CdlYOnYP4Qm+kaJDbfQvAZRRRhpo4sIg7cpoxZ5dSVbl64YyEZzVS7XtA==",
"requires": {
"@firebase/component": "0.1.5",
"@firebase/installations-types": "0.3.1",
"@firebase/util": "0.2.40",
"idb": "3.0.2",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/installations-types": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@firebase/installations-types/-/installations-types-0.3.1.tgz",
"integrity": "sha512-VU2Ssgy+rZx1LLra3e3CtYQ6cyZHMsg8zO6HVK3sf83qEOWMmWFPxLgjmyrCx+YDSY4A0TwmwFi2I7Mh98WY7w=="
},
"@firebase/logger": {
"version": "0.1.35",
"resolved": "https://registry.npmjs.org/@firebase/logger/-/logger-0.1.35.tgz",
"integrity": "sha512-T7I/0+IQrlPAm/uUw6xeyJH5Msi8P6in/0LUtz2XQn2+LVBqyatlr+Nod9AldDCZehwLySEAFhXlqhb3BrI5GA=="
},
"@firebase/messaging": {
"version": "0.6.4",
"resolved": "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.6.4.tgz",
"integrity": "sha512-QKoK5gskZ9cECOa5nnp2oXoP3vmVOyzrEj3x0vHu1HsZhCg6EgRiJ9yO4LeTwoVcwFKDMkuNNPJZ8USOy2fdtw==",
"requires": {
"@firebase/component": "0.1.5",
"@firebase/installations": "0.4.2",
"@firebase/messaging-types": "0.4.2",
"@firebase/util": "0.2.40",
"idb": "3.0.2",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/messaging-types": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@firebase/messaging-types/-/messaging-types-0.4.2.tgz",
"integrity": "sha512-Yb6pJ31tyDWP+4/8uXUO4cNP4oBdfauNuPT0SVqQ92SKlp4n2lHtH68IHa1outxJj6CFzFgj/Z2YZMviUWCM0Q=="
},
"@firebase/performance": {
"version": "0.2.32",
"resolved": "https://registry.npmjs.org/@firebase/performance/-/performance-0.2.32.tgz",
"integrity": "sha512-e18mVGU7Er13nG1IT/BrONxvoKhd2MK7IUWMvxGv1NDQ0gs/AiK1qKzCRI1oBtyna5b/I+pYI8UvaffWRQXKBw==",
"requires": {
"@firebase/component": "0.1.5",
"@firebase/installations": "0.4.2",
"@firebase/logger": "0.1.35",
"@firebase/performance-types": "0.0.9",
"@firebase/util": "0.2.40",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/performance-types": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/@firebase/performance-types/-/performance-types-0.0.9.tgz",
"integrity": "sha512-kOVFW2OY5qObjSrq3OczLuEIKGtnVw/R7qw/wTtgPbyQUhMp7o2tnfTcMWlKSEifgcJDEY3kMTda3fjAuXgzSw=="
},
"@firebase/polyfill": {
"version": "0.3.31",
"resolved": "https://registry.npmjs.org/@firebase/polyfill/-/polyfill-0.3.31.tgz",
"integrity": "sha512-7XItMz50tdba57tCOTCSH8REvHYbrTU7MBOksnNZ3td/J9W/RkCPcLVSSnFWNmn0Jv1aufpUevryX1J4DZ/oiw==",
"requires": {
"core-js": "3.6.2",
"promise-polyfill": "8.1.3",
"whatwg-fetch": "2.0.4"
},
"dependencies": {
"whatwg-fetch": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz",
"integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng=="
}
}
},
"@firebase/remote-config": {
"version": "0.1.13",
"resolved": "https://registry.npmjs.org/@firebase/remote-config/-/remote-config-0.1.13.tgz",
"integrity": "sha512-VpqUZ5NRbWtoWkKsro2cqGRQh5eqTD6Fw/qETUmYk2jp1vdkyIzn8Mb4yAdejwC6W/fuib3R2XzIjHeHtAJNRA==",
"requires": {
"@firebase/component": "0.1.5",
"@firebase/installations": "0.4.2",
"@firebase/logger": "0.1.35",
"@firebase/remote-config-types": "0.1.6",
"@firebase/util": "0.2.40",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/remote-config-types": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@firebase/remote-config-types/-/remote-config-types-0.1.6.tgz",
"integrity": "sha512-t8Q3GOq7mGqy8SwgnMHQZYqADEc4fj3rdA8U+ZFPWEISMrGQQfaCm/5QaS7HFmSoKaJx+/tSBBKVjVqvSoOH6Q=="
},
"@firebase/storage": {
"version": "0.3.26",
"resolved": "https://registry.npmjs.org/@firebase/storage/-/storage-0.3.26.tgz",
"integrity": "sha512-oSzQsDVUL5YuL7+7bkoA111rID0y1OZpAWKZlKtLktTqWN8GUloQIqArdwg1POt0wV+B1hfBytJuYZlI17hGgg==",
"requires": {
"@firebase/component": "0.1.5",
"@firebase/storage-types": "0.3.9",
"@firebase/util": "0.2.40",
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/storage-types": {
"version": "0.3.9",
"resolved": "https://registry.npmjs.org/@firebase/storage-types/-/storage-types-0.3.9.tgz",
"integrity": "sha512-az7GZ9zpLAh8vvbOKGwsRy/pB7bI654PzGPvAdK4E35NDBjLMTVBn8yqeDZd/5OjY3dgYit0twIDo1ljx1O6QA=="
},
"@firebase/util": {
"version": "0.2.40",
"resolved": "https://registry.npmjs.org/@firebase/util/-/util-0.2.40.tgz",
"integrity": "sha512-ViuceN8F6eeN/8QaA7FbOX7KlypQAFrXHBnTEicxwED4n1SdgGFapaS/ggScq1MMwq0RjGinNbigtc1Rqy8yVA==",
"requires": {
"tslib": "1.10.0"
},
"dependencies": {
"tslib": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz",
"integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="
}
}
},
"@firebase/webchannel-wrapper": {
"version": "0.2.35",
"resolved": "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.2.35.tgz",
"integrity": "sha512-7njiGBbFW0HCnuKNEJLcQt9EjfOzG8EJiXlFJwA3XfgiFxPVHmXrcF4d5yold2wfiwCwrXpeNTGZ854oRr6Hcw=="
},
"@grpc/proto-loader": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.5.3.tgz",
"integrity": "sha512-8qvUtGg77G2ZT2HqdqYoM/OY97gQd/0crSG34xNmZ4ZOsv3aQT/FQV9QfZPazTGna6MIoyUd+u6AxsoZjJ/VMQ==",
"requires": {
"lodash.camelcase": "^4.3.0",
"protobufjs": "^6.8.6"
},
"dependencies": {
"@types/node": {
"version": "10.17.17",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.17.tgz",
"integrity": "sha512-gpNnRnZP3VWzzj5k3qrpRC6Rk3H/uclhAVo1aIvwzK5p5cOrs9yEyQ8H/HBsBY0u5rrWxXEiVPQ0dEB6pkjE8Q=="
},
"protobufjs": {
"version": "6.8.9",
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.8.9.tgz",
"integrity": "sha512-j2JlRdUeL/f4Z6x4aU4gj9I2LECglC+5qR2TrWb193Tla1qfdaNQTZ8I27Pt7K0Ajmvjjpft7O3KWTGciz4gpw==",
"requires": {
"@protobufjs/aspromise": "^1.1.2",
"@protobufjs/base64": "^1.1.2",
"@protobufjs/codegen": "^2.0.4",
"@protobufjs/eventemitter": "^1.1.0",
"@protobufjs/fetch": "^1.1.0",
"@protobufjs/float": "^1.0.2",
"@protobufjs/inquire": "^1.1.0",
"@protobufjs/path": "^1.1.2",
"@protobufjs/pool": "^1.1.0",
"@protobufjs/utf8": "^1.1.0",
"@types/long": "^4.0.0",
"@types/node": "^10.1.0",
"long": "^4.0.0"
}
}
}
},
"@jest/types": {
"version": "24.9.0",
"resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz",
"integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==",
"requires": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^1.1.1",
"@types/yargs": "^13.0.0"
}
},
"@protobufjs/aspromise": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
"integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78="
},
"@protobufjs/base64": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
},
"@protobufjs/codegen": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
"integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="
},
"@protobufjs/eventemitter": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
"integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A="
},
"@protobufjs/fetch": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
"integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=",
"requires": {
"@protobufjs/aspromise": "^1.1.1",
"@protobufjs/inquire": "^1.1.0"
}
},
"@protobufjs/float": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
"integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E="
},
"@protobufjs/inquire": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
"integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik="
},
"@protobufjs/path": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
"integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0="
},
"@protobufjs/pool": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
"integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q="
},
"@protobufjs/utf8": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
"integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA="
},
"@reach/router": {
"version": "1.3.1",
"requires": {
"create-react-context": "0.3.0",
"invariant": "^2.2.3",
"prop-types": "^15.6.1",
"react-lifecycles-compat": "^3.0.4"
}
},
"@sheerun/mutationobserver-shim": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.3.tgz",
"integrity": "sha512-DetpxZw1fzPD5xUBrIAoplLChO2VB8DlL5Gg+I1IR9b2wPqYIca2WSUxL5g1vLeR4MsQq1NeWriXAVffV+U1Fw=="
},
"@styled-icons/boxicons-logos": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/boxicons-logos/-/boxicons-logos-10.0.0.tgz",
"integrity": "sha512-su7cuMcn1rOxUcq9IxqW6LafOGfD20NAzewzJErktUPx/i+d9Hu380lIoKmvLAH1lXEdGggTGlYBgu0vbIRyMw==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/boxicons-regular": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/boxicons-regular/-/boxicons-regular-10.0.0.tgz",
"integrity": "sha512-/AlI3YTCdHvQDxJJRh6AAL0NaU8lwle3gXJ1I0f1I/MHhPO7N7VAB1jN3fcqj6i3Cwvz88HJ9DC+Mx+wQAUKAg==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/boxicons-solid": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/boxicons-solid/-/boxicons-solid-10.0.0.tgz",
"integrity": "sha512-gz8swxbEpKNPmdoeIwfV3gQuHb1BpesuEpeeJ3fbtvOOltho8JAxvhE7fDX1b5FHXZl5DOsPqI86N/QSo/3dqg==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/crypto": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/crypto/-/crypto-10.0.0.tgz",
"integrity": "sha512-lIqg7wwrt9sP1wDrm9suARojs2e9TS4v/6NCmX7GsBzz+iP+iNbMSwsntTX6SAVxsNIADkMPdf47yF3GLoID1A==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/entypo": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/entypo/-/entypo-10.0.0.tgz",
"integrity": "sha512-MMQOb/BPKRBIVpUI5DAFKK6dqdTvLkMbm/WttCKRZSIFxgZfBG9CYnjB1yydqlC3bWWhJsmhOdM5PzKTXvxb/w==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/entypo-social": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/entypo-social/-/entypo-social-10.0.0.tgz",
"integrity": "sha512-H1uFWET+J+R5pVtRkRsPUbpGkkNCdDBhsXVDAF5M9nVEUx76Dmcl0mfRFg7+tfMvQjvfi/V30Sj/tacLXoTj+w==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/evaicons-outline": {
"version": "10.2.0",
"resolved": "https://registry.npmjs.org/@styled-icons/evaicons-outline/-/evaicons-outline-10.2.0.tgz",
"integrity": "sha512-TOPl//uVmDzbpDueQnNdie2jh7wjf1AwPxdbv/kEIHzxZyLcCZwHJGYC+zQfV6ByLWimaaPnUq7dAr0cD+lUTA==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/evaicons-solid": {
"version": "10.2.0",
"resolved": "https://registry.npmjs.org/@styled-icons/evaicons-solid/-/evaicons-solid-10.2.0.tgz",
"integrity": "sha512-Yd3F+jvjHkI8iqDnoqhg2sFyGe9+NVxFDfjmUKL3wBH8e59tPFAHzX3ATsCE3dGyFOWtvyaKc5mKf0PculvHSw==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/evil": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/evil/-/evil-10.0.0.tgz",
"integrity": "sha512-cVr8I6bF1jphAcUIQOM5ziqa2h3FXhNq+JrBjsizdWO8iK/cXeZ7eTxrqRJ3RnXED15Q5f0Oh55hw8r2MSVACg==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/fa-brands": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/fa-brands/-/fa-brands-10.0.0.tgz",
"integrity": "sha512-OzTXI7czu2B0XSHeVqS8QqutsYKGxy1FgY6Hq+QX11iktrOnti9wxz2fvb0CyrJT3jHm2eGb6nP6xXIgjA4YUg==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/fa-regular": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/fa-regular/-/fa-regular-10.0.0.tgz",
"integrity": "sha512-LgDxi+sqTF4//LYBQ1rfy4yqCoNyUPuYoPVz9y1EWKwK15I5UDeCI+ycHXGlXLAqlipX0lSTrAkAOJyVAXQ0mw==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/fa-solid": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/fa-solid/-/fa-solid-10.0.0.tgz",
"integrity": "sha512-ZfRhJNHudVLYoqHANjNt0UifFrmkiWAJi6SkAcPujX9iwxBdC3bDMQm+J9j7Z1XWstVIusZoLJ7Ax3rdywpK/A==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/feather": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/feather/-/feather-10.0.0.tgz",
"integrity": "sha512-ubgZH0Irx4L0Q02WJtg7f+IFRBRA8YtNZCOCezFPS9Bqdq3IV76NrYK1/+yP6ZTEyxurxjJdzVot8JMwUhgicA==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/foundation": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/foundation/-/foundation-10.0.0.tgz",
"integrity": "sha512-uAaJL16vBg3YG/G3IU0stH/8HVsAttUmJe3u2kiVapol8Tk/mscTlwdS95MhFpoDZ8fWWhivJcWcJ5kaqf08wQ==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/heroicons-outline": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/heroicons-outline/-/heroicons-outline-10.0.0.tgz",
"integrity": "sha512-N/foqMX0/2RkeREYD5heTbrX61pWlpq25Fvd88L+k1/S63f/uyRQWLrKzh5ydzzjsioKzSzvYtLsuIcJ92wRTg==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/heroicons-solid": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/heroicons-solid/-/heroicons-solid-10.0.0.tgz",
"integrity": "sha512-pzAVHSazKhyBjGBMg6UMX/hwnrWJNvQeW0oS5oSSeQnwjCYSyAP7fd2aqZQKWg/LGymep4f/ZYADVzoxlQwNqA==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/icomoon": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/icomoon/-/icomoon-10.0.0.tgz",
"integrity": "sha512-3gcCl8LO/vkkctCm3TqLftVSqcWZanUuc4n7f2q5oeU5wVeBMsOkCLVmHIh0Z9I7UXYBKAzsFB1YRr7fOxwtWA==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/material": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/material/-/material-10.0.0.tgz",
"integrity": "sha512-RNPlB7AUhPWQYLEH1/zNSu8fv7Hpdp7ylFMtMjgEyZNf25jW1NLwBBoGEZmUixc5uyIRmNk7JC/Jj2SoymAtJA==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/material-outlined": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/material-outlined/-/material-outlined-10.0.0.tgz",
"integrity": "sha512-QHKP4iCLMZAOEP5CaQ/YS12O7kaE2txIQmqUqaFJTgcX8P10UhkuSfBrafVRFRPiEPGWvoWNLWi6oxkyoiVATg==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/material-rounded": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/material-rounded/-/material-rounded-10.0.0.tgz",
"integrity": "sha512-f84febrgHalRwlVqJrjLJczW5/gp9chEv9RE0B+N6ks91V90sYNzrg5AcsfQjvZjUjTxSlJD4sZfph/2gs5S0A==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/material-sharp": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/material-sharp/-/material-sharp-10.0.0.tgz",
"integrity": "sha512-5gUiw0KsFY0BBUl/+Yn2KlbOEtyNh15O4NsrK7egOGC5L52LKWyScfYdzBh25MEjd+qOY3FhR64rufVnl65Xxg==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/material-twotone": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/material-twotone/-/material-twotone-10.0.0.tgz",
"integrity": "sha512-bAASpDp2pN+XospcBJvlsJHsPVistv8glmN6GpbsXVgKxFUCGqIE6sV5MOGKylJtAlvfv6zge0b+H0w8QmOSXA==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/octicons": {
"version": "10.1.0",
"resolved": "https://registry.npmjs.org/@styled-icons/octicons/-/octicons-10.1.0.tgz",
"integrity": "sha512-1ThTFhAZbxz9XEGgasOZY4OGsvkUZm50PaHHjhqsMS448ZxTx99cLQ0O8PLjIuhrasO6i1rP4WCUOUWzb20aRw==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/open-iconic": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/open-iconic/-/open-iconic-10.0.0.tgz",
"integrity": "sha512-dHs+3uLaXAzwPl8wJbE793I7VMcsgxgEIgHo3cff+kbCOPEa29C97qmsYU8lcnuvce7twJYT6ViaUKc3skhYZw==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/remix-fill": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/remix-fill/-/remix-fill-10.0.0.tgz",
"integrity": "sha512-w1JuoufsEMa3LoLk943mH8KFynqAjywdZjsvdJW7ir4ufPkCw+ZS/4jRBG5qZ3oWSTuEFJzBs/RlBoTbh/X1rg==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/remix-line": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/remix-line/-/remix-line-10.0.0.tgz",
"integrity": "sha512-8Q2ch6eGm5lZiPLBGkyrPVJ0UpSM+VEtxhIrRJJFtfJmLOJegJEIfOuu42BMdXmHqS16TFQZPTP7+0BMn0Qtgw==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/styled-icon": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/styled-icon/-/styled-icon-10.0.0.tgz",
"integrity": "sha512-owIKYlIOv+daYscp6vnymOXiOAR6lsDoB2HYI10KrreovX0Ny48qbyqKjirvtxLFyEiHoz8QXSNO6QbanINv9Q==",
"requires": {
"@emotion/is-prop-valid": "^0.8.7",
"tslib": "^1.11.1"
}
},
"@styled-icons/typicons": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/typicons/-/typicons-10.0.0.tgz",
"integrity": "sha512-Laaj996ZQmMpk3zU/F92S2aOfNmNoerqOPogM5I0AjwNXX9TdmrajV68kov5Sa3JnodbYSB/zrhoV9ED2OOX/w==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@styled-icons/zondicons": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/@styled-icons/zondicons/-/zondicons-10.0.0.tgz",
"integrity": "sha512-uKr8LQjsj0awENj/8uoapfejAjwsLPuAkjOQxECGRY7qsAggdqV1F0YYo/BaV8oc0eSQ4RJmp7Fv76ecxs7uew==",
"requires": {
"@styled-icons/styled-icon": "^10.0.0",
"tslib": "^1.11.1"
}
},
"@testing-library/dom": {
"version": "6.12.2",
"resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-6.12.2.tgz",
"integrity": "sha512-KCnvHra5fV+wDxg3wJObGvZFxq7v1DJt829GNFLuRDjKxVNc/B5AdsylNF5PMHFbWMXDsHwM26d2NZcZO9KjbQ==",
"requires": {
"@babel/runtime": "^7.6.2",
"@sheerun/mutationobserver-shim": "^0.3.2",
"@types/testing-library__dom": "^6.0.0",
"aria-query": "3.0.0",
"pretty-format": "^24.9.0",
"wait-for-expect": "^3.0.0"
}
},
"@testing-library/jest-dom": {
"version": "4.2.4",
"requires": {
"@babel/runtime": "^7.5.1",
"chalk": "^2.4.1",
"css": "^2.2.3",
"css.escape": "^1.5.1",
"jest-diff": "^24.0.0",
"jest-matcher-utils": "^24.0.0",
"lodash": "^4.17.11",
"pretty-format": "^24.0.0",
"redent": "^3.0.0"
}
},
"@testing-library/react": {
"version": "9.4.0",
"requires": {
"@babel/runtime": "^7.7.6",
"@testing-library/dom": "^6.11.0",
"@types/testing-library__react": "^9.1.2"
}
},
"@testing-library/user-event": {
"version": "7.2.1"
},
"@types/bytebuffer": {
"version": "5.0.40",
"resolved": "https://registry.npmjs.org/@types/bytebuffer/-/bytebuffer-5.0.40.tgz",
"integrity": "sha512-h48dyzZrPMz25K6Q4+NCwWaxwXany2FhQg/ErOcdZS1ZpsaDnDMZg8JYLMTGz7uvXKrcKGJUZJlZObyfgdaN9g==",
"requires": {
"@types/long": "*",
"@types/node": "*"
}
},
"@types/istanbul-lib-coverage": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz",
"integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg=="
},
"@types/istanbul-lib-report": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
"integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
"requires": {
"@types/istanbul-lib-coverage": "*"
}
},
"@types/istanbul-reports": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz",
"integrity": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==",
"requires": {
"@types/istanbul-lib-coverage": "*",
"@types/istanbul-lib-report": "*"
}
},
"@types/long": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz",
"integrity": "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w=="
},
"@types/node": {
"version": "13.7.1",
"resolved": "https://registry.npmjs.org/@types/node/-/node-13.7.1.tgz",
"integrity": "sha512-Zq8gcQGmn4txQEJeiXo/KiLpon8TzAl0kmKH4zdWctPj05nWwp1ClMdAVEloqrQKfaC48PNLdgN/aVaLqUrluA=="
},
"@types/prop-types": {
"version": "15.7.3",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz",
"integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw=="
},
"@types/react": {
"version": "16.9.23",
"resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.23.tgz",
"integrity": "sha512-SsGVT4E7L2wLN3tPYLiF20hmZTPGuzaayVunfgXzUn1x4uHVsKH6QDJQ/TdpHqwsTLd4CwrmQ2vOgxN7gE24gw==",
"requires": {
"@types/prop-types": "*",
"csstype": "^2.2.0"
}
},
"@types/react-dom": {
"version": "16.9.5",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.5.tgz",
"integrity": "sha512-BX6RQ8s9D+2/gDhxrj8OW+YD4R+8hj7FEM/OJHGNR0KipE1h1mSsf39YeyC81qafkq+N3rU3h3RFbLSwE5VqUg==",
"requires": {
"@types/react": "*"
}
},
"@types/testing-library__dom": {
"version": "6.14.0",
"resolved": "https://registry.npmjs.org/@types/testing-library__dom/-/testing-library__dom-6.14.0.tgz",
"integrity": "sha512-sMl7OSv0AvMOqn1UJ6j1unPMIHRXen0Ita1ujnMX912rrOcawe4f7wu0Zt9GIQhBhJvH2BaibqFgQ3lP+Pj2hA==",
"requires": {
"pretty-format": "^24.3.0"
}
},
"@types/testing-library__react": {
"version": "9.1.2",
"resolved": "https://registry.npmjs.org/@types/testing-library__react/-/testing-library__react-9.1.2.tgz",
"integrity": "sha512-CYaMqrswQ+cJACy268jsLAw355DZtPZGt3Jwmmotlcu8O/tkoXBI6AeZ84oZBJsIsesozPKzWzmv/0TIU+1E9Q==",
"requires": {
"@types/react-dom": "*",
"@types/testing-library__dom": "*"
}
},
"@types/yargs": {
"version": "13.0.8",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.8.tgz",
"integrity": "sha512-XAvHLwG7UQ+8M4caKIH0ZozIOYay5fQkAgyIXegXT9jPtdIGdhga+sUEdAr1CiG46aB+c64xQEYyEzlwWVTNzA==",
"requires": {
"@types/yargs-parser": "*"
}
},
"@types/yargs-parser": {
"version": "15.0.0",
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz",
"integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="
},
"abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
},
"ajv": {
"version": "6.12.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz",
"integrity": "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==",
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"amdefine": {