-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
5272 lines (4550 loc) · 204 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ant-design/colors@^6.0.0":
"integrity" "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ=="
"resolved" "https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@ctrl/tinycolor" "^3.4.0"
"@ant-design/icons-svg@^4.2.1":
"integrity" "sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw=="
"resolved" "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz"
"version" "4.2.1"
"@ant-design/icons@^4.7.0":
"integrity" "sha512-aoB4Z7JA431rt6d4u+8xcNPPCrdufSRMUOpxa1ab6mz1JCQZOEVolj2WVs/tDFmN62zzK30mNelEsprLYsSF3g=="
"resolved" "https://registry.npmjs.org/@ant-design/icons/-/icons-4.7.0.tgz"
"version" "4.7.0"
dependencies:
"@ant-design/colors" "^6.0.0"
"@ant-design/icons-svg" "^4.2.1"
"@babel/runtime" "^7.11.2"
"classnames" "^2.2.6"
"rc-util" "^5.9.4"
"@ant-design/react-slick@~0.28.1":
"integrity" "sha512-j9eAHTn7GxbXUFNknJoHS2ceAsqrQi2j8XykjZE1IXCD8kJF+t28EvhBLniDpbOsBk/3kjalnhriTfZcjBHNqg=="
"resolved" "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-0.28.4.tgz"
"version" "0.28.4"
dependencies:
"@babel/runtime" "^7.10.4"
"classnames" "^2.2.5"
"json2mq" "^0.2.0"
"lodash" "^4.17.21"
"resize-observer-polyfill" "^1.5.0"
"@babel/code-frame@^7.16.0":
"integrity" "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/highlight" "^7.16.0"
"@babel/generator@^7.16.0":
"integrity" "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-annotate-as-pure@^7.15.4", "@babel/helper-annotate-as-pure@^7.16.0":
"integrity" "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-function-name@^7.16.0":
"integrity" "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-get-function-arity" "^7.16.0"
"@babel/template" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/helper-get-function-arity@^7.16.0":
"integrity" "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-hoist-variables@^7.16.0":
"integrity" "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.15.4", "@babel/helper-module-imports@^7.16.0":
"integrity" "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-split-export-declaration@^7.16.0":
"integrity" "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-validator-identifier@^7.15.7":
"integrity" "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"
"version" "7.15.7"
"@babel/highlight@^7.16.0":
"integrity" "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.16.0", "@babel/parser@^7.16.3":
"integrity" "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz"
"version" "7.16.4"
"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4":
"integrity" "sha512-etcO/ohMNaNA2UBdaXBBSX/3aEzFMRrVfaPv8Ptc0k+cWpWW0QFiGZ2XnVqQZI1Cf734LbPGmqBKWESfW4x/dQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.0.tgz"
"version" "7.17.0"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.15.4":
"integrity" "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.3.1":
"integrity" "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.7.6":
"integrity" "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.9.2":
"integrity" "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.16.0":
"integrity" "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/parser" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/traverse@^7.4.5":
"integrity" "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/generator" "^7.16.0"
"@babel/helper-function-name" "^7.16.0"
"@babel/helper-hoist-variables" "^7.16.0"
"@babel/helper-split-export-declaration" "^7.16.0"
"@babel/parser" "^7.16.3"
"@babel/types" "^7.16.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.16.0":
"integrity" "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"to-fast-properties" "^2.0.0"
"@csstools/convert-colors@^1.4.0":
"integrity" "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw=="
"resolved" "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz"
"version" "1.4.0"
"@ctrl/tinycolor@^3.4.0":
"integrity" "sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ=="
"resolved" "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz"
"version" "3.4.0"
"@emotion/is-prop-valid@^0.8.8":
"integrity" "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="
"resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz"
"version" "0.8.8"
dependencies:
"@emotion/memoize" "0.7.4"
"@emotion/[email protected]":
"integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
"version" "0.7.4"
"@emotion/stylis@^0.8.4":
"integrity" "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
"resolved" "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz"
"version" "0.8.5"
"@emotion/unitless@^0.7.4":
"integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
"resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz"
"version" "0.7.5"
"@glidejs/glide@^3.4.1":
"integrity" "sha512-7jGciNJ2bQ4eZLSNlSZ+VAyW63kALf420CvkEpK4lEsUfWJq9odqimci0YCiyNyMUFB+pWHwLYyNc57dijYsCg=="
"resolved" "https://registry.npmjs.org/@glidejs/glide/-/glide-3.5.2.tgz"
"version" "3.5.2"
"@googlemaps/[email protected]":
"integrity" "sha512-h1RNVIJkHWL4UrdJo8fwECJwSRg8CSIfTEtPdzvThcji7tAPvVBDVBPzvPKhvl8e8mWEGPhnYOt6kPfSxJL+vQ=="
"resolved" "https://registry.npmjs.org/@googlemaps/js-api-loader/-/js-api-loader-1.12.8.tgz"
"version" "1.12.8"
dependencies:
"fast-deep-equal" "^3.1.3"
"@googlemaps/[email protected]":
"integrity" "sha512-DSmN2w1ZoI+PBWfNCKYcr+zalP0uaaKIU08+UgebJYZ96X+J6CdUpD+xOVwBV1OJDiIXkneHquOZnT+V6dm+Sg=="
"resolved" "https://registry.npmjs.org/@googlemaps/markerclusterer/-/markerclusterer-1.0.12.tgz"
"version" "1.0.12"
dependencies:
"@turf/clusters-dbscan" "^6.4.0"
"@turf/clusters-kmeans" "^6.4.0"
"fast-deep-equal" "^3.1.3"
"supercluster" "^7.1.3"
"@mrmlnc/readdir-enhanced@^2.2.1":
"integrity" "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g=="
"resolved" "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"call-me-maybe" "^1.0.1"
"glob-to-regexp" "^0.3.0"
"@next/bundle-analyzer@^12.0.10":
"integrity" "sha512-POUNU5BAyJUvuMnALBFaxQvS6Rpdk2D7snHV/3Wdv2UkVX5PUPBYZc3KLdMirMQ6jPNbnvB0/lG5/LM15fHtqw=="
"resolved" "https://registry.npmjs.org/@next/bundle-analyzer/-/bundle-analyzer-12.0.10.tgz"
"version" "12.0.10"
dependencies:
"webpack-bundle-analyzer" "4.3.0"
"@next/[email protected]":
"integrity" "sha512-mQVj0K6wQ5WEk/sL9SZ+mJXJUaG7el8CpZ6io1uFe9GgNTSC7EgUyNGqM6IQovIFc5ukF4O/hqsdh3S/DCgT2g=="
"resolved" "https://registry.npmjs.org/@next/env/-/env-12.0.10.tgz"
"version" "12.0.10"
"@next/[email protected]":
"integrity" "sha512-c79PcfWtyThiYRa1+3KVfDq0zXaI8o1d6dQWNVqDrtLz5HKM/rbjLdvoNuxDwUeZhxI/d9CtyH6GbuKPw5l/5A=="
"resolved" "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.0.10.tgz"
"version" "12.0.10"
"@next/[email protected]":
"integrity" "sha512-g/scgn+21/MLfizOCZOZt+MxNj2/8Tdlwjvy+QZcSUPZRUI2Y5o3HwBvI1f/bSci+NGRU+bUAO0NFtRJ9MzH5w=="
"resolved" "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.0.10.tgz"
"version" "12.0.10"
"@nodelib/fs.stat@^1.1.2":
"integrity" "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz"
"version" "1.1.3"
"@polka/url@^1.0.0-next.20":
"integrity" "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="
"resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz"
"version" "1.0.0-next.21"
"@react-google-maps/api@^2.2.0":
"integrity" "sha512-Fb/l7aR69ObYvzhpt1d1931454ylRkTPKF1C8GfLvXtg19wc36zTev2Afbahd+qAdyKuQyDdf5/SQyMjYBHI/A=="
"resolved" "https://registry.npmjs.org/@react-google-maps/api/-/api-2.7.0.tgz"
"version" "2.7.0"
dependencies:
"@googlemaps/js-api-loader" "1.12.8"
"@googlemaps/markerclusterer" "1.0.12"
"@react-google-maps/infobox" "2.6.0"
"@react-google-maps/marker-clusterer" "2.6.0"
"@types/google.maps" "3.46.1"
"invariant" "2.2.4"
"@react-google-maps/[email protected]":
"integrity" "sha512-2dXVZsuZ2PjelVg+slpUSYPnvoSIySwf4P/wScGijjqu6bpvhyX9AivitsF7zHfbwnZ0gAPX1Q8xtQhKgawkEg=="
"resolved" "https://registry.npmjs.org/@react-google-maps/infobox/-/infobox-2.6.0.tgz"
"version" "2.6.0"
"@react-google-maps/[email protected]":
"integrity" "sha512-EjeoCM+U/6W9qoGWqurcDbCubqTEDTFET7Jd3XcLHqTLvFAE473x2YbQg98mJXKNgPKcPTNEcTiYYGiIz9tEjA=="
"resolved" "https://registry.npmjs.org/@react-google-maps/marker-clusterer/-/marker-clusterer-2.6.0.tgz"
"version" "2.6.0"
"@redq/reuse-modal@^1.2.4":
"integrity" "sha512-dkIdg/crU3ieUrOKnwS52MUICnoOPdr9sV65ogjBse9OF3j1FsU8j1ZAWHu0GpDQnySI7MUp6jMqf5WxAhZxMA=="
"resolved" "https://registry.npmjs.org/@redq/reuse-modal/-/reuse-modal-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"react-device-detect" "^1.6.2"
"react-rnd" "^9.0.4"
"react-spring" "^8.0.18"
"@reduxjs/toolkit@^1.6.2":
"integrity" "sha512-HbfI/hOVrAcMGAYsMWxw3UJyIoAS9JTdwddsjlr5w3S50tXhWb+EMyhIw+IAvCVCLETkzdjgH91RjDSYZekVBA=="
"resolved" "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.6.2.tgz"
"version" "1.6.2"
dependencies:
"immer" "^9.0.6"
"redux" "^4.1.0"
"redux-thunk" "^2.3.0"
"reselect" "^4.0.0"
"@sindresorhus/is@^0.7.0":
"integrity" "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow=="
"resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz"
"version" "0.7.0"
"@stripe/react-stripe-js@^1.7.0":
"integrity" "sha512-RTL3rE6eNosRb2AhxHBWN0HQgigSo/cfZu8vPAqB9/dZEAjYcEoiDYtjI9Zj1MAh58c5RyQNn3HU3M4hIqUdAg=="
"resolved" "https://registry.npmjs.org/@stripe/react-stripe-js/-/react-stripe-js-1.16.2.tgz"
"version" "1.16.2"
dependencies:
"prop-types" "^15.7.2"
"@stripe/stripe-js@^1.23.0", "@stripe/stripe-js@^1.44.1":
"integrity" "sha512-dkm0zCEoRLu5rTnsIgwDf/QG2DKcalOT2dk1IVgMySOHWTChLyOvQwMYhEduGgLvyYWTwNhAUV4WOLPQvjwLwA=="
"resolved" "https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-1.46.0.tgz"
"version" "1.46.0"
"@styled-system/background@^5.1.2":
"integrity" "sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A=="
"resolved" "https://registry.npmjs.org/@styled-system/background/-/background-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/border@^5.1.5":
"integrity" "sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A=="
"resolved" "https://registry.npmjs.org/@styled-system/border/-/border-5.1.5.tgz"
"version" "5.1.5"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/color@^5.1.2":
"integrity" "sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA=="
"resolved" "https://registry.npmjs.org/@styled-system/color/-/color-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/core@^5.1.2":
"integrity" "sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw=="
"resolved" "https://registry.npmjs.org/@styled-system/core/-/core-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"object-assign" "^4.1.1"
"@styled-system/css@^5.1.5":
"integrity" "sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A=="
"resolved" "https://registry.npmjs.org/@styled-system/css/-/css-5.1.5.tgz"
"version" "5.1.5"
"@styled-system/flexbox@^5.1.2":
"integrity" "sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ=="
"resolved" "https://registry.npmjs.org/@styled-system/flexbox/-/flexbox-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/grid@^5.1.2":
"integrity" "sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg=="
"resolved" "https://registry.npmjs.org/@styled-system/grid/-/grid-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/layout@^5.1.2":
"integrity" "sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw=="
"resolved" "https://registry.npmjs.org/@styled-system/layout/-/layout-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/position@^5.1.2":
"integrity" "sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A=="
"resolved" "https://registry.npmjs.org/@styled-system/position/-/position-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/shadow@^5.1.2":
"integrity" "sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg=="
"resolved" "https://registry.npmjs.org/@styled-system/shadow/-/shadow-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/space@^5.1.2":
"integrity" "sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA=="
"resolved" "https://registry.npmjs.org/@styled-system/space/-/space-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/theme-get@^5.1.2":
"integrity" "sha512-afAYdRqrKfNIbVgmn/2Qet1HabxmpRnzhFwttbGr6F/mJ4RDS/Cmn+KHwHvNXangQsWw/5TfjpWV+rgcqqIcJQ=="
"resolved" "https://registry.npmjs.org/@styled-system/theme-get/-/theme-get-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/typography@^5.1.2":
"integrity" "sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg=="
"resolved" "https://registry.npmjs.org/@styled-system/typography/-/typography-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/variant@^5.1.5":
"integrity" "sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw=="
"resolved" "https://registry.npmjs.org/@styled-system/variant/-/variant-5.1.5.tgz"
"version" "5.1.5"
dependencies:
"@styled-system/core" "^5.1.2"
"@styled-system/css" "^5.1.5"
"@turf/clone@^6.5.0":
"integrity" "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw=="
"resolved" "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz"
"version" "6.5.0"
dependencies:
"@turf/helpers" "^6.5.0"
"@turf/clusters-dbscan@^6.4.0":
"integrity" "sha512-SxZEE4kADU9DqLRiT53QZBBhu8EP9skviSyl+FGj08Y01xfICM/RR9ACUdM0aEQimhpu+ZpRVcUK+2jtiCGrYQ=="
"resolved" "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-6.5.0.tgz"
"version" "6.5.0"
dependencies:
"@turf/clone" "^6.5.0"
"@turf/distance" "^6.5.0"
"@turf/helpers" "^6.5.0"
"@turf/meta" "^6.5.0"
"density-clustering" "1.3.0"
"@turf/clusters-kmeans@^6.4.0":
"integrity" "sha512-DwacD5+YO8kwDPKaXwT9DV46tMBVNsbi1IzdajZu1JDSWoN7yc7N9Qt88oi+p30583O0UPVkAK+A10WAQv4mUw=="
"resolved" "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-6.5.0.tgz"
"version" "6.5.0"
dependencies:
"@turf/clone" "^6.5.0"
"@turf/helpers" "^6.5.0"
"@turf/invariant" "^6.5.0"
"@turf/meta" "^6.5.0"
"skmeans" "0.9.7"
"@turf/distance@^6.5.0":
"integrity" "sha512-xzykSLfoURec5qvQJcfifw/1mJa+5UwByZZ5TZ8iaqjGYN0vomhV9aiSLeYdUGtYRESZ+DYC/OzY+4RclZYgMg=="
"resolved" "https://registry.npmjs.org/@turf/distance/-/distance-6.5.0.tgz"
"version" "6.5.0"
dependencies:
"@turf/helpers" "^6.5.0"
"@turf/invariant" "^6.5.0"
"@turf/helpers@^6.5.0":
"integrity" "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw=="
"resolved" "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz"
"version" "6.5.0"
"@turf/invariant@^6.5.0":
"integrity" "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg=="
"resolved" "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz"
"version" "6.5.0"
dependencies:
"@turf/helpers" "^6.5.0"
"@turf/meta@^6.5.0":
"integrity" "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA=="
"resolved" "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz"
"version" "6.5.0"
dependencies:
"@turf/helpers" "^6.5.0"
"@types/cookie@^0.3.3":
"integrity" "sha512-LKVP3cgXBT9RYj+t+9FDKwS5tdI+rPBXaNSkma7hvqy35lc7mAokC2zsqWJH0LaqIt3B962nuYI77hsJoT1gow=="
"resolved" "https://registry.npmjs.org/@types/cookie/-/cookie-0.3.3.tgz"
"version" "0.3.3"
"@types/[email protected]":
"integrity" "sha512-GAa5ZWYgXG50yLXybb7A824esGm/L0LKHS7qD0qkP0IA/Qp5r922P9tmYcbCkGEf3Zgf7Ukbp7l08/IGIJuQwQ=="
"resolved" "https://registry.npmjs.org/@types/google.maps/-/google.maps-3.46.1.tgz"
"version" "3.46.1"
"@types/hoist-non-react-statics@^3.3.0":
"integrity" "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA=="
"resolved" "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz"
"version" "3.3.1"
dependencies:
"@types/react" "*"
"hoist-non-react-statics" "^3.3.0"
"@types/json-schema@^7.0.8":
"integrity" "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz"
"version" "7.0.9"
"@types/node@*":
"integrity" "sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz"
"version" "18.11.18"
"@types/prop-types@*":
"integrity" "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz"
"version" "15.7.4"
"@types/q@^1.5.1":
"integrity" "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ=="
"resolved" "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz"
"version" "1.5.5"
"@types/react-redux@^7.1.20":
"integrity" "sha512-q42es4c8iIeTgcnB+yJgRTTzftv3eYYvCZOh1Ckn2eX/3o5TdsQYKUWpLoLuGlcY/p+VAhV9IOEZJcWk/vfkXw=="
"resolved" "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.20.tgz"
"version" "7.1.20"
dependencies:
"@types/hoist-non-react-statics" "^3.3.0"
"@types/react" "*"
"hoist-non-react-statics" "^3.3.0"
"redux" "^4.0.0"
"@types/react@*":
"integrity" "sha512-2FS1oTqBGcH/s0E+CjrCCR9+JMpsu9b69RTFO+40ua43ZqP5MmQ4iUde/dMjWR909KxZwmOQIFq6AV6NjEG5xg=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.37.tgz"
"version" "17.0.37"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"
"@types/scheduler@*":
"integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
"resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz"
"version" "0.16.2"
"acorn-walk@^8.0.0":
"integrity" "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="
"resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz"
"version" "8.2.0"
"acorn@^8.0.4":
"integrity" "sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz"
"version" "8.7.0"
"airbnb-prop-types@^2.14.0", "airbnb-prop-types@^2.15.0", "airbnb-prop-types@^2.16.0":
"integrity" "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg=="
"resolved" "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz"
"version" "2.16.0"
dependencies:
"array.prototype.find" "^2.1.1"
"function.prototype.name" "^1.1.2"
"is-regex" "^1.1.0"
"object-is" "^1.1.2"
"object.assign" "^4.1.0"
"object.entries" "^1.1.2"
"prop-types" "^15.7.2"
"prop-types-exact" "^1.2.0"
"react-is" "^16.13.1"
"ajv-errors@^1.0.0":
"integrity" "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ=="
"resolved" "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz"
"version" "1.0.1"
"ajv-keywords@^3.1.0", "ajv-keywords@^3.5.2":
"integrity" "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ=="
"resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
"version" "3.5.2"
"ajv@^6.1.0", "ajv@^6.12.5", "ajv@^6.9.1", "ajv@>=5.0.0":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"antd-country-phone-input@^4.3.1":
"integrity" "sha512-aiIcmRTizPZb0uqymdWBf7dGIUt/AIl/wV2pAKnMvlD3BDRf9j3czs3TcpVDE+LenCBOgWFAeDcWsxz9dxRqsA=="
"resolved" "https://registry.npmjs.org/antd-country-phone-input/-/antd-country-phone-input-4.3.1.tgz"
"version" "4.3.1"
"antd@^4.2.2", "[email protected]":
"integrity" "sha512-CgliJK1iFUYVER2zJsBUManwxLKhdrRVdhpYeHByglZ8w/WXmgIJ3xoSwwM0o4A/FA+gRuDa0f7kVnzPDiqdYw=="
"resolved" "https://registry.npmjs.org/antd/-/antd-4.18.6.tgz"
"version" "4.18.6"
dependencies:
"@ant-design/colors" "^6.0.0"
"@ant-design/icons" "^4.7.0"
"@ant-design/react-slick" "~0.28.1"
"@babel/runtime" "^7.12.5"
"@ctrl/tinycolor" "^3.4.0"
"classnames" "^2.2.6"
"copy-to-clipboard" "^3.2.0"
"lodash" "^4.17.21"
"memoize-one" "^6.0.0"
"moment" "^2.25.3"
"rc-cascader" "~3.2.1"
"rc-checkbox" "~2.3.0"
"rc-collapse" "~3.1.0"
"rc-dialog" "~8.6.0"
"rc-drawer" "~4.4.2"
"rc-dropdown" "~3.2.5"
"rc-field-form" "~1.22.0-2"
"rc-image" "~5.2.5"
"rc-input-number" "~7.3.0"
"rc-mentions" "~1.6.1"
"rc-menu" "~9.2.1"
"rc-motion" "^2.4.4"
"rc-notification" "~4.5.7"
"rc-pagination" "~3.1.9"
"rc-picker" "~2.5.17"
"rc-progress" "~3.2.1"
"rc-rate" "~2.9.0"
"rc-resize-observer" "^1.2.0"
"rc-select" "~14.0.0-alpha.15"
"rc-slider" "~9.7.4"
"rc-steps" "~4.1.0"
"rc-switch" "~3.2.0"
"rc-table" "~7.22.2"
"rc-tabs" "~11.10.0"
"rc-textarea" "~0.3.0"
"rc-tooltip" "~5.1.1"
"rc-tree" "~5.4.3"
"rc-tree-select" "~5.1.1"
"rc-trigger" "^5.2.10"
"rc-upload" "~4.3.0"
"rc-util" "^5.14.0"
"scroll-into-view-if-needed" "^2.2.25"
"arch@^2.1.0":
"integrity" "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ=="
"resolved" "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz"
"version" "2.2.0"
"archive-type@^4.0.0":
"integrity" "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA="
"resolved" "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"file-type" "^4.2.0"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"arr-diff@^4.0.0":
"integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
"resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
"version" "4.0.0"
"arr-flatten@^1.1.0":
"integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
"resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
"version" "1.1.0"
"arr-union@^3.1.0":
"integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
"resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
"version" "3.1.0"
"array-tree-filter@^2.1.0":
"integrity" "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw=="
"resolved" "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz"
"version" "2.1.0"
"array-union@^1.0.1":
"integrity" "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"array-uniq" "^1.0.1"
"array-uniq@^1.0.1":
"integrity" "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
"resolved" "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"
"version" "1.0.3"
"array-unique@^0.3.2":
"integrity" "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
"resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"
"version" "0.3.2"
"array.prototype.find@^2.1.1":
"integrity" "sha512-00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q=="
"resolved" "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.2.tgz"
"version" "2.1.2"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"es-abstract" "^1.19.0"
"array.prototype.flat@^1.2.1":
"integrity" "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg=="
"resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz"
"version" "1.2.5"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"es-abstract" "^1.19.0"
"arrify@^1.0.1":
"integrity" "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"assign-symbols@^1.0.0":
"integrity" "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
"resolved" "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"
"version" "1.0.0"
"async-validator@^4.0.2":
"integrity" "sha512-Pj2IR7u8hmUEDOwB++su6baaRi+QvsgajuFB9j95foM1N2gy5HM4z60hfusIO0fBPG5uLAEl6yCJr1jNSVugEQ=="
"resolved" "https://registry.npmjs.org/async-validator/-/async-validator-4.0.7.tgz"
"version" "4.0.7"
"atob@^2.1.2":
"integrity" "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
"resolved" "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
"version" "2.1.2"
"autoprefixer@^9.6.1":
"integrity" "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA=="
"resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz"
"version" "9.8.8"
dependencies:
"browserslist" "^4.12.0"
"caniuse-lite" "^1.0.30001109"
"normalize-range" "^0.1.2"
"num2fraction" "^1.2.2"
"picocolors" "^0.2.1"
"postcss" "^7.0.32"
"postcss-value-parser" "^4.1.0"
"babel-plugin-import@^1.13.0":
"integrity" "sha512-1qCWdljJOrDRH/ybaCZuDgySii4yYrtQ8OJQwrcDqdt0y67N30ng3X3nABg6j7gR7qUJgcMa9OMhc4AGViDwWw=="
"resolved" "https://registry.npmjs.org/babel-plugin-import/-/babel-plugin-import-1.13.3.tgz"
"version" "1.13.3"
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/runtime" "^7.0.0"
"babel-plugin-styled-components@^1.12.0":
"integrity" "sha512-meGStRGv+VuKA/q0/jXxrPNWEm4LPfYIqxooDTdmh8kFsP/Ph7jJG5rUPwUPX3QHUvggwdbgdGpo88P/rRYsVw=="
"resolved" "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.3.tgz"
"version" "1.13.3"
dependencies:
"@babel/helper-annotate-as-pure" "^7.15.4"
"@babel/helper-module-imports" "^7.15.4"
"babel-plugin-syntax-jsx" "^6.18.0"
"lodash" "^4.17.11"
"babel-plugin-styled-components@>= 1.12.0":
"integrity" "sha512-7eG5NE8rChnNTDxa6LQfynwgHTVOYYaHJbUYSlOhk8QBXIQiMBKq4gyfHBBKPrxUcVBXVJL61ihduCpCQbuNbw=="
"resolved" "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"@babel/helper-annotate-as-pure" "^7.16.0"
"@babel/helper-module-imports" "^7.16.0"
"babel-plugin-syntax-jsx" "^6.18.0"
"lodash" "^4.17.11"
"babel-plugin-syntax-jsx@^6.18.0":
"integrity" "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY="
"resolved" "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"
"version" "6.18.0"
"integrity" "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g=="
"resolved" "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"core-js" "^2.4.0"
"regenerator-runtime" "^0.11.0"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"base@^0.11.1":
"integrity" "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="
"resolved" "https://registry.npmjs.org/base/-/base-0.11.2.tgz"
"version" "0.11.2"
dependencies:
"cache-base" "^1.0.1"
"class-utils" "^0.3.5"
"component-emitter" "^1.2.1"
"define-property" "^1.0.0"
"isobject" "^3.0.1"
"mixin-deep" "^1.2.0"
"pascalcase" "^0.1.1"
"base64-js@^1.3.1":
"integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
"resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
"version" "1.5.1"
"big.js@^5.2.2":
"integrity" "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
"resolved" "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"
"version" "5.2.2"
"bin-build@^3.0.0":
"integrity" "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA=="
"resolved" "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"decompress" "^4.0.0"
"download" "^6.2.2"
"execa" "^0.7.0"
"p-map-series" "^1.0.0"
"tempfile" "^2.0.0"
"bin-check@^4.1.0":
"integrity" "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA=="
"resolved" "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"execa" "^0.7.0"
"executable" "^4.1.0"
"bin-version-check@^4.0.0":
"integrity" "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ=="
"resolved" "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"bin-version" "^3.0.0"
"semver" "^5.6.0"
"semver-truncate" "^1.1.2"
"bin-version@^3.0.0":
"integrity" "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ=="
"resolved" "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"execa" "^1.0.0"
"find-versions" "^3.0.0"
"bin-wrapper@^4.0.0":
"integrity" "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q=="
"resolved" "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"bin-check" "^4.1.0"
"bin-version-check" "^4.0.0"
"download" "^7.1.0"
"import-lazy" "^3.1.0"
"os-filter-obj" "^2.0.0"
"pify" "^4.0.1"
"bl@^1.0.0":
"integrity" "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww=="
"resolved" "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz"
"version" "1.2.3"
dependencies:
"readable-stream" "^2.3.5"
"safe-buffer" "^5.1.1"
"boolbase@^1.0.0", "boolbase@~1.0.0":
"integrity" "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
"resolved" "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"
"version" "1.0.0"
"brace-expansion@^1.1.7":
"integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"braces@^2.3.1":
"integrity" "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="
"resolved" "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"arr-flatten" "^1.1.0"
"array-unique" "^0.3.2"
"extend-shallow" "^2.0.1"
"fill-range" "^4.0.0"
"isobject" "^3.0.1"
"repeat-element" "^1.1.2"
"snapdragon" "^0.8.1"
"snapdragon-node" "^2.0.1"
"split-string" "^3.0.2"
"to-regex" "^3.0.1"
"brcast@^2.0.2":
"integrity" "sha512-Tfn5JSE7hrUlFcOoaLzVvkbgIemIorMIyoMr3TgvszWW7jFt2C9PdeMLtysYD9RU0MmU17b69+XJG1eRY2OBRg=="
"resolved" "https://registry.npmjs.org/brcast/-/brcast-2.0.2.tgz"
"version" "2.0.2"
"browserslist@^4.12.0", "browserslist@^4.6.4":
"integrity" "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ=="
"resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz"
"version" "4.18.1"
dependencies:
"caniuse-lite" "^1.0.30001280"
"electron-to-chromium" "^1.3.896"
"escalade" "^3.1.1"
"node-releases" "^2.0.1"
"picocolors" "^1.0.0"
"buffer-alloc-unsafe@^1.1.0":
"integrity" "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="
"resolved" "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"
"version" "1.1.0"
"buffer-alloc@^1.2.0":
"integrity" "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow=="
"resolved" "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"buffer-alloc-unsafe" "^1.1.0"
"buffer-fill" "^1.0.0"
"buffer-crc32@~0.2.3":
"integrity" "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI="
"resolved" "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"
"version" "0.2.13"
"buffer-fill@^1.0.0":
"integrity" "sha1-+PeLdniYiO858gXNY39o5wISKyw="
"resolved" "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz"
"version" "1.0.0"
"buffer@^5.2.1":
"integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
"resolved" "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
"version" "5.7.1"
dependencies:
"base64-js" "^1.3.1"
"ieee754" "^1.1.13"
"cache-base@^1.0.1":
"integrity" "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="
"resolved" "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"collection-visit" "^1.0.0"
"component-emitter" "^1.2.1"
"get-value" "^2.0.6"
"has-value" "^1.0.0"
"isobject" "^3.0.1"
"set-value" "^2.0.0"
"to-object-path" "^0.3.0"
"union-value" "^1.0.0"
"unset-value" "^1.0.0"
"cacheable-request@^2.1.1":
"integrity" "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0="
"resolved" "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"clone-response" "1.0.2"
"get-stream" "3.0.0"
"http-cache-semantics" "3.8.1"
"keyv" "3.0.0"
"lowercase-keys" "1.0.0"
"normalize-url" "2.0.1"
"responselike" "1.0.2"
"call-bind@^1.0.0", "call-bind@^1.0.2":