-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
5971 lines (5154 loc) · 242 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
"@algolia/[email protected]":
"integrity" "sha512-ERFFOnC9740xAkuO0iZTQqm2AzU7Dpz/s+g7o48GlZgx5p9GgNcsuK5eS0GoW/tAK+fnKlizCtlFHNuIWuvfsg=="
"resolved" "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/cache-common" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-UugTER3V40jT+e19Dmph5PKMeliYKxycNPwrPNADin0RcWNfT2QksK9Ff2N2W7UKraqMOzoeDb4LAJtxcK1a8Q=="
"resolved" "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.12.1.tgz"
"version" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-U6iaunaxK1lHsAf02UWF58foKFEcrVLsHwN56UkCtwn32nlP9rz52WOcHsgk6TJrL8NDcO5swMjtOQ5XHESFLw=="
"resolved" "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/cache-common" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-jGo4ConJNoMdTCR2zouO0jO/JcJmzOK6crFxMMLvdnB1JhmMbuIKluOTJVlBWeivnmcsqb7r0v7qTCPW5PAyxQ=="
"resolved" "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/client-common" "4.12.1"
"@algolia/client-search" "4.12.1"
"@algolia/transporter" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-h1It7KXzIthlhuhfBk7LteYq72tym9maQDUsyRW0Gft8b6ZQahnRak9gcCvKwhcJ1vJoP7T7JrNYGiYSicTD9g=="
"resolved" "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/client-common" "4.12.1"
"@algolia/client-search" "4.12.1"
"@algolia/requester-common" "4.12.1"
"@algolia/transporter" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-obnJ8eSbv+h94Grk83DTGQ3bqhViSWureV6oK1s21/KMGWbb3DkduHm+lcwFrMFkjSUSzosLBHV9EQUIBvueTw=="
"resolved" "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/requester-common" "4.12.1"
"@algolia/transporter" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-sMSnjjPjRgByGHYygV+5L/E8a6RgU7l2GbpJukSzJ9GRY37tHmBHuvahv8JjdCGJ2p7QDYLnQy5bN5Z02qjc7Q=="
"resolved" "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/client-common" "4.12.1"
"@algolia/requester-common" "4.12.1"
"@algolia/transporter" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-MwwKKprfY6X2nJ5Ki/ccXM2GDEePvVjZnnoOB2io3dLKW4fTqeSRlC5DRXeFD7UM0vOPPHr4ItV2aj19APKNVQ=="
"resolved" "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/client-common" "4.12.1"
"@algolia/requester-common" "4.12.1"
"@algolia/transporter" "4.12.1"
"@algolia/events@^4.0.1":
"integrity" "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ=="
"resolved" "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz"
"version" "4.0.1"
"@algolia/[email protected]":
"integrity" "sha512-fCgrzlXGATNqdFTxwx0GsyPXK+Uqrx1SZ3iuY2VGPPqdt1a20clAG2n2OcLHJpvaa6vMFPlJyWvbqAgzxdxBlQ=="
"resolved" "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.12.1.tgz"
"version" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-0owaEnq/davngQMYqxLA4KrhWHiXujQ1CU3FFnyUcMyBR7rGHI48zSOUpqnsAXrMBdSH6rH5BDkSUUFwsh8RkQ=="
"resolved" "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/logger-common" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-OaMxDyG0TZG0oqz1lQh9e3woantAG1bLnuwq3fmypsrQxra4IQZiyn1x+kEb69D2TcXApI5gOgrD4oWhtEVMtw=="
"resolved" "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/requester-common" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-XWIrWQNJ1vIrSuL/bUk3ZwNMNxl+aWz6dNboRW6+lGTcMIwc3NBFE90ogbZKhNrFRff8zI4qCF15tjW+Fyhpow=="
"resolved" "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.12.1.tgz"
"version" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-awBtwaD+s0hxkA1aehYn8F0t9wqGoBVWgY4JPHBmp1ChO3pK7RKnnvnv7QQa9vTlllX29oPt/BBVgMo1Z3n1Qg=="
"resolved" "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/requester-common" "4.12.1"
"@algolia/[email protected]":
"integrity" "sha512-BGeNgdEHc6dXIk2g8kdlOoQ6fQ6OIaKQcplEj7HPoi+XZUeAvRi3Pff3QWd7YmybWkjzd9AnTzieTASDWhL+sQ=="
"resolved" "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.12.1.tgz"
"version" "4.12.1"
dependencies:
"@algolia/cache-common" "4.12.1"
"@algolia/logger-common" "4.12.1"
"@algolia/requester-common" "4.12.1"
"@apollo/client@^3", "@apollo/client@^3.6.9":
"integrity" "sha512-Y1yu8qa2YeaCUBVuw08x8NHenFi0sw2I3KCu7Kw9mDSu86HmmtHJkCAifKVrN2iPgDTW/BbP3EpSV8/EQCcxZA=="
"resolved" "https://registry.npmjs.org/@apollo/client/-/client-3.6.9.tgz"
"version" "3.6.9"
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
"@wry/context" "^0.6.0"
"@wry/equality" "^0.5.0"
"@wry/trie" "^0.3.0"
"graphql-tag" "^2.12.6"
"hoist-non-react-statics" "^3.3.2"
"optimism" "^0.16.1"
"prop-types" "^15.7.2"
"symbol-observable" "^4.0.0"
"ts-invariant" "^0.10.3"
"tslib" "^2.3.0"
"zen-observable-ts" "^1.2.5"
"@ardatan/[email protected]":
"integrity" "sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA=="
"resolved" "https://registry.npmjs.org/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz"
"version" "0.0.1"
dependencies:
"node-fetch" "^2.6.1"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7":
"integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/highlight" "^7.16.7"
"@babel/compat-data@^7.16.4":
"integrity" "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.8.tgz"
"version" "7.16.8"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.16.12":
"integrity" "sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz"
"version" "7.16.12"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.16.8"
"@babel/helper-compilation-targets" "^7.16.7"
"@babel/helper-module-transforms" "^7.16.7"
"@babel/helpers" "^7.16.7"
"@babel/parser" "^7.16.12"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.16.10"
"@babel/types" "^7.16.8"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/generator@^7.16.8":
"integrity" "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz"
"version" "7.16.8"
dependencies:
"@babel/types" "^7.16.8"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.16.7":
"integrity" "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/compat-data" "^7.16.4"
"@babel/helper-validator-option" "^7.16.7"
"browserslist" "^4.17.5"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.16.7":
"integrity" "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-function-name@^7.16.7":
"integrity" "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/helper-get-function-arity" "^7.16.7"
"@babel/template" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/helper-get-function-arity@^7.16.7":
"integrity" "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-hoist-variables@^7.16.7":
"integrity" "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
"integrity" "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-module-transforms@^7.16.7":
"integrity" "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/helper-environment-visitor" "^7.16.7"
"@babel/helper-module-imports" "^7.16.7"
"@babel/helper-simple-access" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/helper-validator-identifier" "^7.16.7"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/helper-plugin-utils@^7.16.7":
"integrity" "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"
"version" "7.16.7"
"@babel/helper-simple-access@^7.16.7":
"integrity" "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-split-export-declaration@^7.16.7":
"integrity" "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-validator-identifier@^7.16.7":
"integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
"version" "7.16.7"
"@babel/helper-validator-option@^7.16.7":
"integrity" "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"
"version" "7.16.7"
"@babel/helpers@^7.16.7":
"integrity" "sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/highlight@^7.16.7":
"integrity" "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"
"version" "7.16.10"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.16.10", "@babel/parser@^7.16.12", "@babel/parser@^7.16.7", "@babel/parser@^7.16.8":
"integrity" "sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.16.12.tgz"
"version" "7.16.12"
"@babel/plugin-syntax-jsx@^7.12.13":
"integrity" "sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/runtime@^7.1.2", "@babel/runtime@^7.13.10", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6":
"integrity" "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.16.7":
"integrity" "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/parser" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/traverse@^7.16.10", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8":
"integrity" "sha512-yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.10.tgz"
"version" "7.16.10"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.16.8"
"@babel/helper-environment-visitor" "^7.16.7"
"@babel/helper-function-name" "^7.16.7"
"@babel/helper-hoist-variables" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/parser" "^7.16.10"
"@babel/types" "^7.16.8"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.16.7", "@babel/types@^7.16.8":
"integrity" "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz"
"version" "7.16.8"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"to-fast-properties" "^2.0.0"
"@cspotcode/source-map-support@^0.8.0":
"integrity" "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="
"resolved" "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz"
"version" "0.8.1"
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
"@emotion/babel-plugin@^11.3.0":
"integrity" "sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ=="
"resolved" "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.7.2.tgz"
"version" "11.7.2"
dependencies:
"@babel/helper-module-imports" "^7.12.13"
"@babel/plugin-syntax-jsx" "^7.12.13"
"@babel/runtime" "^7.13.10"
"@emotion/hash" "^0.8.0"
"@emotion/memoize" "^0.7.5"
"@emotion/serialize" "^1.0.2"
"babel-plugin-macros" "^2.6.1"
"convert-source-map" "^1.5.0"
"escape-string-regexp" "^4.0.0"
"find-root" "^1.1.0"
"source-map" "^0.5.7"
"stylis" "4.0.13"
"@emotion/cache@^11.7.1":
"integrity" "sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A=="
"resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-11.7.1.tgz"
"version" "11.7.1"
dependencies:
"@emotion/memoize" "^0.7.4"
"@emotion/sheet" "^1.1.0"
"@emotion/utils" "^1.0.0"
"@emotion/weak-memoize" "^0.2.5"
"stylis" "4.0.13"
"@emotion/hash@^0.8.0":
"integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz"
"version" "0.8.0"
"@emotion/is-prop-valid@^0.8.2":
"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/is-prop-valid@^1.1.1":
"integrity" "sha512-bW1Tos67CZkOURLc0OalnfxtSXQJMrAMV0jZTVGJUPSOd4qgjF3+tTD5CwJM13PHA8cltGW1WGbbvV9NpvUZPw=="
"resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"@emotion/memoize" "^0.7.4"
"@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5":
"integrity" "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz"
"version" "0.7.5"
"@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/react@^11.0.0-rc.0", "@emotion/react@^11.7.1":
"integrity" "sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw=="
"resolved" "https://registry.npmjs.org/@emotion/react/-/react-11.7.1.tgz"
"version" "11.7.1"
dependencies:
"@babel/runtime" "^7.13.10"
"@emotion/cache" "^11.7.1"
"@emotion/serialize" "^1.0.2"
"@emotion/sheet" "^1.1.0"
"@emotion/utils" "^1.0.0"
"@emotion/weak-memoize" "^0.2.5"
"hoist-non-react-statics" "^3.3.1"
"@emotion/serialize@^1.0.2":
"integrity" "sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A=="
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"@emotion/hash" "^0.8.0"
"@emotion/memoize" "^0.7.4"
"@emotion/unitless" "^0.7.5"
"@emotion/utils" "^1.0.0"
"csstype" "^3.0.2"
"@emotion/server@^11.4.0":
"integrity" "sha512-IHovdWA3V0DokzxLtUNDx4+hQI82zUXqQFcVz/om2t44O0YSc+NHB+qifnyAOoQwt3SXcBTgaSntobwUI9gnfA=="
"resolved" "https://registry.npmjs.org/@emotion/server/-/server-11.4.0.tgz"
"version" "11.4.0"
dependencies:
"@emotion/utils" "^1.0.0"
"html-tokenize" "^2.0.0"
"multipipe" "^1.0.2"
"through" "^2.3.8"
"@emotion/sheet@^1.1.0":
"integrity" "sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g=="
"resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.1.0.tgz"
"version" "1.1.0"
"@emotion/styled@^11.6.0":
"integrity" "sha512-mxVtVyIOTmCAkFbwIp+nCjTXJNgcz4VWkOYQro87jE2QBTydnkiYusMrRGFtzuruiGK4dDaNORk4gH049iiQuw=="
"resolved" "https://registry.npmjs.org/@emotion/styled/-/styled-11.6.0.tgz"
"version" "11.6.0"
dependencies:
"@babel/runtime" "^7.13.10"
"@emotion/babel-plugin" "^11.3.0"
"@emotion/is-prop-valid" "^1.1.1"
"@emotion/serialize" "^1.0.2"
"@emotion/utils" "^1.0.0"
"@emotion/unitless@^0.7.5":
"integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
"resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz"
"version" "0.7.5"
"@emotion/utils@^1.0.0":
"integrity" "sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA=="
"resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-1.0.0.tgz"
"version" "1.0.0"
"@emotion/weak-memoize@^0.2.5":
"integrity" "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
"resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz"
"version" "0.2.5"
"@gar/promisify@^1.0.1":
"integrity" "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw=="
"resolved" "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz"
"version" "1.1.2"
"@graphql-codegen/cli@^2.11.3":
"integrity" "sha512-C1d88Kx0a0PF1tOR00UIZjHq5aWNNcw5fM2k08rOY9O5b4sU7kEb+YbGKP6EExTtJnYb49fePLKVvrIv1ejDFg=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-2.11.3.tgz"
"version" "2.11.3"
dependencies:
"@graphql-codegen/core" "2.6.0"
"@graphql-codegen/plugin-helpers" "^2.6.1"
"@graphql-tools/apollo-engine-loader" "^7.3.6"
"@graphql-tools/code-file-loader" "^7.3.1"
"@graphql-tools/git-loader" "^7.2.1"
"@graphql-tools/github-loader" "^7.3.6"
"@graphql-tools/graphql-file-loader" "^7.5.0"
"@graphql-tools/json-file-loader" "^7.4.1"
"@graphql-tools/load" "^7.7.1"
"@graphql-tools/prisma-loader" "^7.2.7"
"@graphql-tools/url-loader" "^7.13.2"
"@graphql-tools/utils" "^8.9.0"
"@whatwg-node/fetch" "^0.2.3"
"ansi-escapes" "^4.3.1"
"chalk" "^4.1.0"
"chokidar" "^3.5.2"
"cosmiconfig" "^7.0.0"
"debounce" "^1.2.0"
"detect-indent" "^6.0.0"
"graphql-config" "^4.3.1"
"inquirer" "^8.0.0"
"is-glob" "^4.0.1"
"json-to-pretty-yaml" "^1.2.2"
"listr2" "^4.0.5"
"log-symbols" "^4.0.0"
"mkdirp" "^1.0.4"
"string-env-interpolation" "^1.0.1"
"ts-log" "^2.2.3"
"tslib" "^2.4.0"
"yaml" "^1.10.0"
"yargs" "^17.0.0"
"@graphql-codegen/[email protected]":
"integrity" "sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.0.tgz"
"version" "2.6.0"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.5.0"
"@graphql-tools/schema" "^8.5.0"
"@graphql-tools/utils" "^8.8.0"
"tslib" "~2.4.0"
"@graphql-codegen/fragment-matcher@^3.3.0":
"integrity" "sha512-xrs4kjbhO34sjeHq7eEoDpFMgdvSXpWFn2JMr+ihTbgckekYTjfzQ0bRWCu7eeCTSxyh6XSlKoQZIwYikbxbXA=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/fragment-matcher/-/fragment-matcher-3.3.0.tgz"
"version" "3.3.0"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.5.0"
"tslib" "~2.4.0"
"@graphql-codegen/plugin-helpers@^2.5.0", "@graphql-codegen/plugin-helpers@^2.6.1":
"integrity" "sha512-RbkCPu8rZo+d3tWPUzqnZhgGutp15GVcs9UhaOcenKpCDDQxNxqGGTn76LuAAymT9y7BSnXdY20k1CW59z4nTw=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.6.1.tgz"
"version" "2.6.1"
dependencies:
"@graphql-tools/utils" "^8.8.0"
"change-case-all" "1.0.14"
"common-tags" "1.8.2"
"import-from" "4.0.0"
"lodash" "~4.17.0"
"tslib" "~2.4.0"
"@graphql-tools/apollo-engine-loader@^7.3.6":
"integrity" "sha512-r7YU1X9Ce/sr+tPzSuZqVqlK7knGDpiRfB9HB2uVmbm+kPrlISQ0LuamFoT1g1nkfDZUNZn2p18ag512P1aVVw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.3.6.tgz"
"version" "7.3.6"
dependencies:
"@ardatan/sync-fetch" "0.0.1"
"@graphql-tools/utils" "8.9.0"
"@whatwg-node/fetch" "^0.2.4"
"tslib" "^2.4.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-hRVDduX0UDEneVyEWtc2nu5H2PxpfSfM/riUlgZvo/a/nG475uyehxR5cFGvTEPEQUKY3vGIlqvtRigzqTfCew=="
"resolved" "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.1.tgz"
"version" "8.5.1"
dependencies:
"@graphql-tools/utils" "8.9.0"
"dataloader" "2.1.0"
"tslib" "^2.4.0"
"value-or-promise" "1.0.11"
"@graphql-tools/code-file-loader@^7.3.1":
"integrity" "sha512-nyr0zln7fi4E8lK98THdb8k3gPsSCiyXRFTTNhPRUCPeOD2RCpUZCClM5AB0xv8HjILAipdaxjhb2elPvnY5dw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@graphql-tools/graphql-tag-pluck" "7.3.1"
"@graphql-tools/utils" "8.9.0"
"globby" "^11.0.3"
"tslib" "^2.4.0"
"unixify" "^1.0.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-NDcg3GEQmdEHlnF7QS8b4lM1PSF+DKeFcIlLEfZFBvVq84791UtJcDj8734sIHLukmyuAxXMfA1qLd2l4lZqzA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.8.1.tgz"
"version" "8.8.1"
dependencies:
"@graphql-tools/batch-execute" "8.5.1"
"@graphql-tools/schema" "8.5.1"
"@graphql-tools/utils" "8.9.0"
"dataloader" "2.1.0"
"tslib" "~2.4.0"
"value-or-promise" "1.0.11"
"@graphql-tools/git-loader@^7.2.1":
"integrity" "sha512-grfLO3CqKO8hlymqBQeNsjGCzjMXH+n+epM6vH2OW1tUM9UmPrH+En0BynJCap9VYVZ0KcbYz03o5ZJNYkbaCg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-7.2.1.tgz"
"version" "7.2.1"
dependencies:
"@graphql-tools/graphql-tag-pluck" "7.3.1"
"@graphql-tools/utils" "8.9.0"
"is-glob" "4.0.3"
"micromatch" "^4.0.4"
"tslib" "^2.4.0"
"unixify" "^1.0.0"
"@graphql-tools/github-loader@^7.3.6":
"integrity" "sha512-TovDdZ0dxShIfnP3/02+aVfPzhYHedtCVU4GB7rajExdOlNEUAfMAjpDKgTReENzD0ZaehqBnGj2BpR+/b4C1Q=="
"resolved" "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-7.3.6.tgz"
"version" "7.3.6"
dependencies:
"@ardatan/sync-fetch" "0.0.1"
"@graphql-tools/graphql-tag-pluck" "7.3.1"
"@graphql-tools/utils" "8.9.0"
"@whatwg-node/fetch" "^0.2.4"
"tslib" "^2.4.0"
"@graphql-tools/graphql-file-loader@^7.3.7", "@graphql-tools/graphql-file-loader@^7.5.0":
"integrity" "sha512-X3wcC+ZljbXTwdTTSp3oUHJd66mFLDKI750uhB0HidBxE6+wyw7fhmJVJiYROXPswaGliuabpo0JEyLj7hhWKA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.0.tgz"
"version" "7.5.0"
dependencies:
"@graphql-tools/import" "6.7.1"
"@graphql-tools/utils" "8.9.0"
"globby" "^11.0.3"
"tslib" "^2.4.0"
"unixify" "^1.0.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-+Aayl4y42ASrxDvu613lp3NiK1JRggy/m9wlo93dJp/9L5vKPYlrtFvuQ1tpPEEuSBboYNa/erOsELrRwzzakA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/parser" "^7.16.8"
"@babel/traverse" "^7.16.8"
"@babel/types" "^7.16.8"
"@graphql-tools/utils" "8.9.0"
"tslib" "^2.4.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-StLosFVhdw+eZkL+v9dBabszxCAZtEYW4Oy1+750fDkH39GrmzOB8mWiYna7rm9+GMisC9atJtXuAfMF02Aoag=="
"resolved" "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.1.tgz"
"version" "6.7.1"
dependencies:
"@graphql-tools/utils" "8.9.0"
"resolve-from" "5.0.0"
"tslib" "^2.4.0"
"@graphql-tools/json-file-loader@^7.3.7", "@graphql-tools/json-file-loader@^7.4.1":
"integrity" "sha512-+QaeRyJcvUXUNEoIaecYrABunqk8/opFbpdHPAijJyVHvlsYfqXR12/501g+/QZzGHKYnyi+Q3lsZbBboj5LBg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.1.tgz"
"version" "7.4.1"
dependencies:
"@graphql-tools/utils" "8.9.0"
"globby" "^11.0.3"
"tslib" "^2.4.0"
"unixify" "^1.0.0"
"@graphql-tools/load@^7.5.5", "@graphql-tools/load@^7.7.1":
"integrity" "sha512-rJ2WUV41wwAkMnBgtcBym3TKVbPgz7z9tBCjOmbNVLy5bB9StVPdo2Uci0D5xYSgLV9XIt+zdyAnYGptioJeWg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/load/-/load-7.7.1.tgz"
"version" "7.7.1"
dependencies:
"@graphql-tools/schema" "8.5.1"
"@graphql-tools/utils" "8.9.0"
"p-limit" "3.1.0"
"tslib" "^2.4.0"
"@graphql-tools/merge@^8.2.6", "@graphql-tools/[email protected]":
"integrity" "sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.1.tgz"
"version" "8.3.1"
dependencies:
"@graphql-tools/utils" "8.9.0"
"tslib" "^2.4.0"
"@graphql-tools/prisma-loader@^7.2.7":
"integrity" "sha512-vAu2kVqSdfuiZJFOC3bDelKFeOQLfhOHOw1PT8YC0HiJQpLuEFwiDU6eXxWrPALqZEEWfCKMM8/4hlLJv+gokA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-7.2.7.tgz"
"version" "7.2.7"
dependencies:
"@graphql-tools/url-loader" "7.13.2"
"@graphql-tools/utils" "8.9.0"
"@types/js-yaml" "^4.0.0"
"@types/json-stable-stringify" "^1.0.32"
"@types/jsonwebtoken" "^8.5.0"
"chalk" "^4.1.0"
"debug" "^4.3.1"
"dotenv" "^16.0.0"
"graphql-request" "^4.0.0"
"http-proxy-agent" "^5.0.0"
"https-proxy-agent" "^5.0.0"
"isomorphic-fetch" "^3.0.0"
"js-yaml" "^4.0.0"
"json-stable-stringify" "^1.0.1"
"jsonwebtoken" "^8.5.1"
"lodash" "^4.17.20"
"scuid" "^1.1.0"
"tslib" "^2.4.0"
"yaml-ast-parser" "^0.0.43"
"@graphql-tools/schema@^8.5.0", "@graphql-tools/[email protected]":
"integrity" "sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.5.1.tgz"
"version" "8.5.1"
dependencies:
"@graphql-tools/merge" "8.3.1"
"@graphql-tools/utils" "8.9.0"
"tslib" "^2.4.0"
"value-or-promise" "1.0.11"
"@graphql-tools/url-loader@^7.13.2", "@graphql-tools/url-loader@^7.9.7", "@graphql-tools/[email protected]":
"integrity" "sha512-4jtGecsxziiggQ9UryQB/ioqFwVkF10sKdk5bPg/fVKSkPddN5lvCgEwk20LojlDT9mDr53ME0ArMBKkvjTxBw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.13.2.tgz"
"version" "7.13.2"
dependencies:
"@ardatan/sync-fetch" "0.0.1"
"@graphql-tools/delegate" "8.8.1"
"@graphql-tools/utils" "8.9.0"
"@graphql-tools/wrap" "8.5.1"
"@n1ru4l/graphql-live-query" "^0.9.0"
"@types/ws" "^8.0.0"
"@whatwg-node/fetch" "^0.2.4"
"dset" "^3.1.2"
"extract-files" "^11.0.0"
"graphql-ws" "^5.4.1"
"isomorphic-ws" "^5.0.0"
"meros" "^1.1.4"
"tslib" "^2.4.0"
"value-or-promise" "^1.0.11"
"ws" "^8.3.0"
"@graphql-tools/utils@^8.6.5", "@graphql-tools/utils@^8.8.0", "@graphql-tools/utils@^8.9.0", "@graphql-tools/[email protected]":
"integrity" "sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.9.0.tgz"
"version" "8.9.0"
dependencies:
"tslib" "^2.4.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-KpVVfha2wLSpE08YLX0jeo5nXPfDLASlxOqMlvfa/B4X8SOVmuLyN1L5YZ132tPLDF93uflwlHFnUO5ahpRNlA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.5.1.tgz"
"version" "8.5.1"
dependencies:
"@graphql-tools/delegate" "8.8.1"
"@graphql-tools/schema" "8.5.1"
"@graphql-tools/utils" "8.9.0"
"tslib" "^2.4.0"
"value-or-promise" "1.0.11"
"@graphql-typed-document-node/core@^3.1.1":
"integrity" "sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg=="
"resolved" "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz"
"version" "3.1.1"
"@headlessui/react@^1.6.6":
"integrity" "sha512-MFJtmj9Xh/hhBMhLccGbBoSk+sk61BlP6sJe4uQcVMtXZhCgGqd2GyIQzzmsdPdTEWGSF434CBi8mnhR6um46Q=="
"resolved" "https://registry.npmjs.org/@headlessui/react/-/react-1.6.6.tgz"
"version" "1.6.6"
"@heroicons/react@^1.0.6":
"integrity" "sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ=="
"resolved" "https://registry.npmjs.org/@heroicons/react/-/react-1.0.6.tgz"
"version" "1.0.6"
"@iarna/toml@^2.2.5":
"integrity" "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
"resolved" "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz"
"version" "2.2.5"
"@jridgewell/resolve-uri@^3.0.3":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
"@jridgewell/sourcemap-codec@^1.4.10":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/[email protected]":
"integrity" "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz"
"version" "0.3.9"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@n1ru4l/graphql-live-query@^0.9.0":
"integrity" "sha512-BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg=="
"resolved" "https://registry.npmjs.org/@n1ru4l/graphql-live-query/-/graphql-live-query-0.9.0.tgz"
"version" "0.9.0"
"@netlify/functions@^0.10.0":
"integrity" "sha512-NNFADTPnokuoMY1OUhaXlE/Jrzk5lHOl1uB4L/8pw1UJ/CaectZJACMExijbJnqaKIhOQG0WmbBQUh1lgnK/Qg=="
"resolved" "https://registry.npmjs.org/@netlify/functions/-/functions-0.10.0.tgz"
"version" "0.10.0"
dependencies:
"is-promise" "^4.0.0"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@npmcli/fs@^1.0.0":
"integrity" "sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA=="
"resolved" "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"@gar/promisify" "^1.0.1"
"semver" "^7.3.5"
"@npmcli/move-file@^1.0.1":
"integrity" "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="
"resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"mkdirp" "^1.0.4"
"rimraf" "^3.0.2"
"@peculiar/asn1-schema@^2.1.6":
"integrity" "sha512-1ENEJNY7Lwlua/1wvzpYP194WtjQBfFxvde2FlzfBFh/ln6wvChrtxlORhbKEnYswzn6fOC4c7HdC5izLPMTJg=="
"resolved" "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"asn1js" "^3.0.5"
"pvtsutils" "^1.3.2"
"tslib" "^2.4.0"
"@peculiar/json-schema@^1.1.12":
"integrity" "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w=="
"resolved" "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz"
"version" "1.1.12"
dependencies:
"tslib" "^2.0.0"
"@peculiar/webcrypto@^1.4.0":
"integrity" "sha512-U58N44b2m3OuTgpmKgf0LPDOmP3bhwNz01vAnj1mBwxBASRhptWYK+M3zG+HBkDqGQM+bFsoIihTW8MdmPXEqg=="
"resolved" "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.0.tgz"
"version" "1.4.0"
dependencies:
"@peculiar/asn1-schema" "^2.1.6"
"@peculiar/json-schema" "^1.1.12"
"pvtsutils" "^1.3.2"
"tslib" "^2.4.0"
"webcrypto-core" "^1.7.4"
"@prismicio/client@^6.0.0", "@prismicio/client@^6.4.1", "@prismicio/client@^6.6.3":
"integrity" "sha512-cfmcoGXP4zqh7PQSebEfgIJydHi6lsrjZqnlD4ICU3TzitfpP88Q9V9q2qoxCpjO9LiSP8TZIYFPeqQZ3naCLw=="
"resolved" "https://registry.npmjs.org/@prismicio/client/-/client-6.6.3.tgz"
"version" "6.6.3"
dependencies:
"@prismicio/helpers" "^2.3.2"
"@prismicio/types" "^0.2.0"
"@prismicio/helpers@^2.3.1", "@prismicio/helpers@^2.3.2":
"integrity" "sha512-7FyvybtzvqSvFrDL/Dhb91ADrgwhWaNBA8svX/xs3BrARpGicdNBLiy8WBMM3+pD13tLFi8AxOr5563ORO+siw=="
"resolved" "https://registry.npmjs.org/@prismicio/helpers/-/helpers-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@prismicio/richtext" "^2.1.0"
"@prismicio/types" "^0.2.0"
"escape-html" "^1.0.3"
"imgix-url-builder" "^0.0.3"
"@prismicio/react@^2.4.2":
"integrity" "sha512-KyCZBdJosE93S7sl+Z//eDdbT7vYNGNZ60rOs1VETbDXJtJhh7ymSZul5cvb8MrSrH8yn9DiR4rGVVXLobnHSA=="
"resolved" "https://registry.npmjs.org/@prismicio/react/-/react-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"@prismicio/helpers" "^2.3.1"
"@prismicio/richtext" "^2.0.1"
"@prismicio/richtext@^2.0.1", "@prismicio/richtext@^2.1.0":
"integrity" "sha512-uxJaR3soPr356stoLEIcgn+68lfolwxRmlDLTF4gYDcF30rB0YFLPcdRJmhtkU6LGZXIhwUUmwMWXkhT+DV3hA=="
"resolved" "https://registry.npmjs.org/@prismicio/richtext/-/richtext-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"@prismicio/types" "^0.1.22"
"@prismicio/types@^0.1.22":
"integrity" "sha512-wp7DHqMK0FDMcFQfJbqTAzWNBkM6/rRq71jMw6x9m07nWCUqytJQQKg6/15uduIeSqPXmyfJW21drsmChGaxsQ=="
"resolved" "https://registry.npmjs.org/@prismicio/types/-/types-0.1.29.tgz"
"version" "0.1.29"
"@prismicio/types@^0.2.0":
"integrity" "sha512-xxBSbRzKOYoqjRp+wcaA7aMp0yLp6GQ5QH5hwvLXL0ftVvX8A1pHR3mE6B8kgKgouCC2Ma8XsDRqf+AcfQDbdA=="
"resolved" "https://registry.npmjs.org/@prismicio/types/-/types-0.2.0.tgz"
"version" "0.2.0"
"@remix-run/dev@^1.1.3":
"integrity" "sha512-VW2mWmK1r7aOVpPERvQe81tOk5LA5+NoE8s8xfNPkqcjFob3wpKN/EV+wP5f2mpczRg2RfyG2DlFEArIniY9qA=="
"resolved" "https://registry.npmjs.org/@remix-run/dev/-/dev-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"cacache" "^15.0.5"
"chokidar" "^3.5.1"
"esbuild" "0.13.14"
"exit-hook" "2.2.1"
"fs-extra" "^10.0.0"
"lodash.debounce" "^4.0.8"
"meow" "^7.1.1"
"minimatch" "^3.0.4"
"pretty-ms" "^7.0.1"
"read-package-json-fast" "^2.0.2"
"remark-frontmatter" "^4.0.0"
"remark-mdx-frontmatter" "^1.0.1"
"ws" "^7.4.5"
"xdm" "^2.0.0"
"@remix-run/netlify@^1.1.3":
"integrity" "sha512-DDsW8GF4LYdj+NEUjUVW9CmwtJKftCU0xKx48mXi4mY5erG3s6trvVBsHbx9nN/TFoSlmWvPMXb8PyAXd1RREg=="
"resolved" "https://registry.npmjs.org/@remix-run/netlify/-/netlify-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@remix-run/node" "1.1.3"
"@remix-run/server-runtime" "1.1.3"
"@remix-run/[email protected]":
"integrity" "sha512-eU08JGsP7dAS8ucUO6E76SIEGroEhAJJbBij6AKm7CQnyx4bNwvX3PYdEqUhzehhx+uBB/QjeWqmRYevilMYgQ=="
"resolved" "https://registry.npmjs.org/@remix-run/node/-/node-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@remix-run/server-runtime" "1.1.3"
"@types/busboy" "^0.3.1"
"@types/node-fetch" "^2.5.12"
"@web-std/file" "^3.0.0"
"abort-controller" "^3.0.0"
"blob-stream" "^0.1.3"
"busboy" "^0.3.1"
"cookie-signature" "^1.1.0"
"form-data" "^4.0.0"
"node-fetch" "^2.6.1"
"source-map" "^0.7.3"
"@remix-run/react@^1.1.3":
"integrity" "sha512-1vYwRi4qQGJLByZR15o47TRZ3/xT3+vhM97UCPJPu4GtzbPldNYLuQlVmAzWWjGuQmSqmwWv818U/+U7rke18g=="
"resolved" "https://registry.npmjs.org/@remix-run/react/-/react-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"react-router-dom" "^6.2.1"
"@remix-run/[email protected]":
"integrity" "sha512-Gpl57d42CVqx1gDD+kjjUx7PZqjZgw4i1TWpH37AqOCCBTrNBb2lcl2D0oAZ2ot+wLOT9rDbvIU74GzayDUalw=="
"resolved" "https://registry.npmjs.org/@remix-run/server-runtime/-/server-runtime-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@types/cookie" "^0.4.0"
"cookie" "^0.4.1"
"jsesc" "^3.0.1"
"react-router-dom" "^6.2.1"
"set-cookie-parser" "^2.4.8"
"source-map" "^0.7.3"
"@rollup/pluginutils@^4.0.0":
"integrity" "sha512-ROn4qvkxP9SyPeHaf7uQC/GPFY6L/OWy9+bd9AwcjOAWQwxRscoEyAUD8qCY5o5iL4jqQwoLk2kaTKJPb/HwzQ=="
"resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"estree-walker" "^2.0.1"
"picomatch" "^2.2.2"
"@sindresorhus/is@^4.0.0":
"integrity" "sha512-QppPM/8l3Mawvh4rn9CNEYIU9bxpXUCRMaX9yUpvBk1nMKusLKpfXGDEKExKaPhLzcn3lzil7pR6rnJ11HgeRQ=="
"resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-4.4.0.tgz"
"version" "4.4.0"
"@szmarczak/http-timer@^4.0.5":
"integrity" "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w=="
"resolved" "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz"
"version" "4.0.6"
dependencies:
"defer-to-connect" "^2.0.0"
"@tailwindcss/forms@^0.5.2":
"integrity" "sha512-pSrFeJB6Bg1Mrg9CdQW3+hqZXAKsBrSG9MAfFLKy1pVA4Mb4W7C0k7mEhlmS2Dfo/otxrQOET7NJiJ9RrS563w=="
"resolved" "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.2.tgz"
"version" "0.5.2"
dependencies:
"mini-svg-data-uri" "^1.2.3"
"@tailwindcss/line-clamp@^0.4.0":
"integrity" "sha512-HQZo6gfx1D0+DU3nWlNLD5iA6Ef4JAXh0LeD8lOGrJwEDBwwJNKQza6WoXhhY1uQrxOuU8ROxV7CqiQV4CoiLw=="
"resolved" "https://registry.npmjs.org/@tailwindcss/line-clamp/-/line-clamp-0.4.0.tgz"
"version" "0.4.0"
"@tailwindcss/typography@^0.5.3":
"integrity" "sha512-Cn4MufL/xiTh2Npw26xiL7gP3GFkJH+zWM8DAm/NNEr4gF5N9D6gY9zMNNQUu27m8g0IIk665BUuoU92wVUBkA=="
"resolved" "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.3.tgz"
"version" "0.5.3"
dependencies:
"lodash.castarray" "^4.4.0"