forked from mattlockyer/nft-market
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8446 lines (7334 loc) · 325 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
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.14.5":
"integrity" "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/highlight" "^7.14.5"
"@babel/compat-data@^7.14.5":
"integrity" "sha512-kixrYn4JwfAVPa0f2yfzc2AWti6WRRyO3XjWW5PJAvtE11qhSayrrcrEnee05KAtNaPC+EwehE8Qt1UedEVB8w=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.5.tgz"
"version" "7.14.5"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.12.0", "@babel/core@^7.7.5":
"integrity" "sha512-RN/AwP2DJmQTZSfiDaD+JQQ/J99KsIpOCfBE5pL+5jJSt7nI3nYGoAXZu+ffYSQ029NLs2DstZb+eR81uuARgg=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.14.5"
"@babel/helper-compilation-targets" "^7.14.5"
"@babel/helper-module-transforms" "^7.14.5"
"@babel/helpers" "^7.14.5"
"@babel/parser" "^7.14.5"
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"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.14.5", "@babel/generator@^7.4.0", "@babel/generator@^7.9.0":
"integrity" "sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.14.5", "@babel/helper-compilation-targets@^7.8.4":
"integrity" "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/compat-data" "^7.14.5"
"@babel/helper-validator-option" "^7.14.5"
"browserslist" "^4.16.6"
"semver" "^6.3.0"
"@babel/helper-function-name@^7.14.5":
"integrity" "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-get-function-arity" "^7.14.5"
"@babel/template" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-get-function-arity@^7.14.5":
"integrity" "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-hoist-variables@^7.14.5":
"integrity" "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-member-expression-to-functions@^7.14.5":
"integrity" "sha512-UxUeEYPrqH1Q/k0yRku1JE7dyfyehNwT6SVkMHvYvPDv4+uu627VXBckVj891BO8ruKBkiDoGnZf4qPDD8abDQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-module-imports@^7.14.5":
"integrity" "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-module-transforms@^7.14.5":
"integrity" "sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-module-imports" "^7.14.5"
"@babel/helper-replace-supers" "^7.14.5"
"@babel/helper-simple-access" "^7.14.5"
"@babel/helper-split-export-declaration" "^7.14.5"
"@babel/helper-validator-identifier" "^7.14.5"
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-optimise-call-expression@^7.14.5":
"integrity" "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"
"version" "7.14.5"
"@babel/helper-replace-supers@^7.14.5":
"integrity" "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.14.5"
"@babel/helper-optimise-call-expression" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-simple-access@^7.14.5":
"integrity" "sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-split-export-declaration@^7.14.5":
"integrity" "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-validator-identifier@^7.14.5":
"integrity" "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz"
"version" "7.14.5"
"@babel/helper-validator-option@^7.14.5":
"integrity" "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.14.5":
"integrity" "sha512-xtcWOuN9VL6nApgVHtq3PPcQv5qFBJzoSZzJ/2c0QK/IP/gxVcoWSNQwFEGvmbQsuS9rhYqjILDGGXcTkA705Q=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/highlight@^7.14.5":
"integrity" "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.4.3":
"integrity" "sha512-TM8C+xtH/9n1qzX+JNHi7AN2zHMTiPUtspO0ZdHflW8KaskkALhMmuMHb4bCmNdv9VAPzJX3/bXqkVLnAvsPfg=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.5.tgz"
"version" "7.14.5"
"@babel/plugin-syntax-async-generators@^7.8.4":
"integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
"version" "7.8.4"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
"integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.8.3":
"integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-flow@^7.14.5":
"integrity" "sha512-9WK5ZwKCdWHxVuU13XNT6X73FGmutAXeor5lGFq6qhOFtMFUF4jkbijuyUdZZlpYq6E2hZeZf/u3959X9wsv0Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-import-meta@^7.8.3":
"integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
"integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
"integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
"integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.8.3":
"integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
"integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
"integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-top-level-await@^7.8.3":
"integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-transform-flow-strip-types@^7.0.0":
"integrity" "sha512-KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-flow" "^7.14.5"
"@babel/template@^7.14.5", "@babel/template@^7.3.3", "@babel/template@^7.4.0":
"integrity" "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/parser" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.4.3":
"integrity" "sha512-G3BiS15vevepdmFqmUc9X+64y0viZYygubAMO8SvBmKARuF6CPSZtH4Ng9vi/lrWlZFGe3FWdXNy835akH8Glg=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.14.5"
"@babel/helper-function-name" "^7.14.5"
"@babel/helper-hoist-variables" "^7.14.5"
"@babel/helper-split-export-declaration" "^7.14.5"
"@babel/parser" "^7.14.5"
"@babel/types" "^7.14.5"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.12.13", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.0":
"integrity" "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"to-fast-properties" "^2.0.0"
"@bcoe/v8-coverage@^0.2.3":
"integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
"resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
"version" "0.2.3"
"@cnakazawa/watch@^1.0.3":
"integrity" "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ=="
"resolved" "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz"
"version" "1.0.4"
dependencies:
"exec-sh" "^0.3.2"
"minimist" "^1.2.0"
"@eslint/eslintrc@^0.2.1":
"integrity" "sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz"
"version" "0.2.1"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^12.1.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"lodash" "^4.17.19"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@iarna/toml@^2.2.0":
"integrity" "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
"resolved" "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz"
"version" "2.2.5"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="
"resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"camelcase" "^5.3.1"
"find-up" "^4.1.0"
"get-package-type" "^0.1.0"
"js-yaml" "^3.13.1"
"resolve-from" "^5.0.0"
"@istanbuljs/schema@^0.1.2":
"integrity" "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw=="
"resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz"
"version" "0.1.2"
"@jest/console@^24.9.0":
"integrity" "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ=="
"resolved" "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/source-map" "^24.9.0"
"chalk" "^2.0.1"
"slash" "^2.0.0"
"@jest/console@^26.6.2":
"integrity" "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g=="
"resolved" "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/types" "^26.6.2"
"@types/node" "*"
"chalk" "^4.0.0"
"jest-message-util" "^26.6.2"
"jest-util" "^26.6.2"
"slash" "^3.0.0"
"@jest/core@^26.6.3":
"integrity" "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw=="
"resolved" "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz"
"version" "26.6.3"
dependencies:
"@jest/console" "^26.6.2"
"@jest/reporters" "^26.6.2"
"@jest/test-result" "^26.6.2"
"@jest/transform" "^26.6.2"
"@jest/types" "^26.6.2"
"@types/node" "*"
"ansi-escapes" "^4.2.1"
"chalk" "^4.0.0"
"exit" "^0.1.2"
"graceful-fs" "^4.2.4"
"jest-changed-files" "^26.6.2"
"jest-config" "^26.6.3"
"jest-haste-map" "^26.6.2"
"jest-message-util" "^26.6.2"
"jest-regex-util" "^26.0.0"
"jest-resolve" "^26.6.2"
"jest-resolve-dependencies" "^26.6.3"
"jest-runner" "^26.6.3"
"jest-runtime" "^26.6.3"
"jest-snapshot" "^26.6.2"
"jest-util" "^26.6.2"
"jest-validate" "^26.6.2"
"jest-watcher" "^26.6.2"
"micromatch" "^4.0.2"
"p-each-series" "^2.1.0"
"rimraf" "^3.0.0"
"slash" "^3.0.0"
"strip-ansi" "^6.0.0"
"@jest/environment@^24.9.0":
"integrity" "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ=="
"resolved" "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/fake-timers" "^24.9.0"
"@jest/transform" "^24.9.0"
"@jest/types" "^24.9.0"
"jest-mock" "^24.9.0"
"@jest/environment@^26.6.2":
"integrity" "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA=="
"resolved" "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/fake-timers" "^26.6.2"
"@jest/types" "^26.6.2"
"@types/node" "*"
"jest-mock" "^26.6.2"
"@jest/fake-timers@^24.9.0":
"integrity" "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A=="
"resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/types" "^24.9.0"
"jest-message-util" "^24.9.0"
"jest-mock" "^24.9.0"
"@jest/fake-timers@^26.6.2":
"integrity" "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA=="
"resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/types" "^26.6.2"
"@sinonjs/fake-timers" "^6.0.1"
"@types/node" "*"
"jest-message-util" "^26.6.2"
"jest-mock" "^26.6.2"
"jest-util" "^26.6.2"
"@jest/globals@^26.6.2":
"integrity" "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA=="
"resolved" "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/environment" "^26.6.2"
"@jest/types" "^26.6.2"
"expect" "^26.6.2"
"@jest/reporters@^26.6.2":
"integrity" "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw=="
"resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
"@jest/console" "^26.6.2"
"@jest/test-result" "^26.6.2"
"@jest/transform" "^26.6.2"
"@jest/types" "^26.6.2"
"chalk" "^4.0.0"
"collect-v8-coverage" "^1.0.0"
"exit" "^0.1.2"
"glob" "^7.1.2"
"graceful-fs" "^4.2.4"
"istanbul-lib-coverage" "^3.0.0"
"istanbul-lib-instrument" "^4.0.3"
"istanbul-lib-report" "^3.0.0"
"istanbul-lib-source-maps" "^4.0.0"
"istanbul-reports" "^3.0.2"
"jest-haste-map" "^26.6.2"
"jest-resolve" "^26.6.2"
"jest-util" "^26.6.2"
"jest-worker" "^26.6.2"
"slash" "^3.0.0"
"source-map" "^0.6.0"
"string-length" "^4.0.1"
"terminal-link" "^2.0.0"
"v8-to-istanbul" "^7.0.0"
optionalDependencies:
"node-notifier" "^8.0.0"
"@jest/source-map@^24.9.0":
"integrity" "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg=="
"resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"callsites" "^3.0.0"
"graceful-fs" "^4.1.15"
"source-map" "^0.6.0"
"@jest/source-map@^26.6.2":
"integrity" "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA=="
"resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"callsites" "^3.0.0"
"graceful-fs" "^4.2.4"
"source-map" "^0.6.0"
"@jest/test-result@^24.9.0":
"integrity" "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA=="
"resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/console" "^24.9.0"
"@jest/types" "^24.9.0"
"@types/istanbul-lib-coverage" "^2.0.0"
"@jest/test-result@^26.6.2":
"integrity" "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ=="
"resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@jest/console" "^26.6.2"
"@jest/types" "^26.6.2"
"@types/istanbul-lib-coverage" "^2.0.0"
"collect-v8-coverage" "^1.0.0"
"@jest/test-sequencer@^26.6.3":
"integrity" "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw=="
"resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz"
"version" "26.6.3"
dependencies:
"@jest/test-result" "^26.6.2"
"graceful-fs" "^4.2.4"
"jest-haste-map" "^26.6.2"
"jest-runner" "^26.6.3"
"jest-runtime" "^26.6.3"
"@jest/transform@^24.9.0":
"integrity" "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ=="
"resolved" "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@babel/core" "^7.1.0"
"@jest/types" "^24.9.0"
"babel-plugin-istanbul" "^5.1.0"
"chalk" "^2.0.1"
"convert-source-map" "^1.4.0"
"fast-json-stable-stringify" "^2.0.0"
"graceful-fs" "^4.1.15"
"jest-haste-map" "^24.9.0"
"jest-regex-util" "^24.9.0"
"jest-util" "^24.9.0"
"micromatch" "^3.1.10"
"pirates" "^4.0.1"
"realpath-native" "^1.1.0"
"slash" "^2.0.0"
"source-map" "^0.6.1"
"write-file-atomic" "2.4.1"
"@jest/transform@^26.6.2":
"integrity" "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA=="
"resolved" "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@babel/core" "^7.1.0"
"@jest/types" "^26.6.2"
"babel-plugin-istanbul" "^6.0.0"
"chalk" "^4.0.0"
"convert-source-map" "^1.4.0"
"fast-json-stable-stringify" "^2.0.0"
"graceful-fs" "^4.2.4"
"jest-haste-map" "^26.6.2"
"jest-regex-util" "^26.0.0"
"jest-util" "^26.6.2"
"micromatch" "^4.0.2"
"pirates" "^4.0.1"
"slash" "^3.0.0"
"source-map" "^0.6.1"
"write-file-atomic" "^3.0.0"
"@jest/types@^24.9.0":
"integrity" "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^1.1.1"
"@types/yargs" "^13.0.0"
"@jest/types@^26.6.2":
"integrity" "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
"@types/yargs" "^15.0.0"
"chalk" "^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-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz"
"version" "1.2.7"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-l50SKMhJd7x8H4VVa83i5tOQ5EOBs3RjzgSkh82keIn38F7e/fTXPwwYH2YknTvlE+r4KS+ybjtXbGxx8UdWnA=="
"resolved" "https://registry.npmjs.org/@parcel/babel-ast-utils/-/babel-ast-utils-2.0.0-nightly.2338.tgz"
"version" "2.0.0-nightly.2338"
dependencies:
"@babel/parser" "^7.0.0"
"@parcel/babylon-walk" "2.0.0-nightly.2338+f582ffdc"
"@parcel/source-map" "2.0.0-rc.4"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"astring" "^1.6.2"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-31J/EWs6AAzzsBBk0rkweeUHuq2hDSvPVQunE87AagJZ6qi1/kUoBwUn95pcL12vCErByqgBQuH0GCmgkgCxTQ=="
"resolved" "https://registry.npmjs.org/@parcel/babylon-walk/-/babylon-walk-2.0.0-nightly.2338.tgz"
"version" "2.0.0-nightly.2338"
dependencies:
"@babel/types" "^7.12.13"
"lodash.clone" "^4.5.0"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-IwNYpR3bfMFuLYov62SNj4jBjRWFnYFyl4WWdJztTDeGJn8hcZUR+8bDB3uESDyBWDkzRq5Fs4Y3iqh+jJI/aw=="
"resolved" "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/diagnostic" "2.0.0-nightly.716+f582ffdc"
"@parcel/hash" "2.0.0-nightly.2338+f582ffdc"
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"nullthrows" "^1.1.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-TUxG+CzT8jpDhu4hqDnhf5Q20JIZCQagynacc3u6cLgCmmNJWLtJA9/jmm2riqP9SP1Z9JuQaPp71aVjbqDUUA=="
"resolved" "https://registry.npmjs.org/@parcel/cache/-/cache-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/logger" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"lmdb-store" "^1.5.2"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-P0qhd5K2f8n3qvOgOyrCRSlT1qqBVXKj8M0w/imLGqBbdotQo0wqLwuyGlBwDimE8qxo7E3Try9UGNV5UC/xww=="
"resolved" "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"chalk" "^4.1.0"
"emphasize" "^4.2.0"
"slice-ansi" "^4.0.0"
"string-width" "^4.2.0"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-s/EvyqLldvfJ0pthccmWDVShSPm050ChHh6uxd8akjbIPrjzjs5rT9Q0eVAyVokMLeDDuB2/OroGk+XxCUwPCg=="
"resolved" "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/bundler-default" "2.0.0-nightly.716+f582ffdc"
"@parcel/namer-default" "2.0.0-nightly.716+f582ffdc"
"@parcel/optimizer-cssnano" "2.0.0-nightly.716+f582ffdc"
"@parcel/optimizer-htmlnano" "2.0.0-nightly.716+f582ffdc"
"@parcel/optimizer-terser" "2.0.0-nightly.716+f582ffdc"
"@parcel/packager-css" "2.0.0-nightly.716+f582ffdc"
"@parcel/packager-html" "2.0.0-nightly.716+f582ffdc"
"@parcel/packager-js" "2.0.0-nightly.716+f582ffdc"
"@parcel/packager-raw" "2.0.0-nightly.716+f582ffdc"
"@parcel/reporter-dev-server" "2.0.0-nightly.716+f582ffdc"
"@parcel/resolver-default" "2.0.0-nightly.716+f582ffdc"
"@parcel/runtime-browser-hmr" "2.0.0-nightly.716+f582ffdc"
"@parcel/runtime-js" "2.0.0-nightly.716+f582ffdc"
"@parcel/runtime-react-refresh" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-babel" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-css" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-html" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-js" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-json" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-postcss" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-posthtml" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-raw" "2.0.0-nightly.716+f582ffdc"
"@parcel/transformer-react-refresh-wrap" "2.0.0-nightly.716+f582ffdc"
"@parcel/core@^2.0.0-alpha.3.1", "@parcel/[email protected]+f582ffdc":
"integrity" "sha512-T/EZws8lBFcmOeuJTEhVQJxaLApMVVM36alIVevh6u9xkOXzpI0kXsnLK7dGI22mKdpQJ1W2j1BTVHDLBK7zYw=="
"resolved" "https://registry.npmjs.org/@parcel/core/-/core-2.0.0-nightly.714.tgz"
"version" "2.0.0-nightly.714"
dependencies:
"@parcel/cache" "2.0.0-nightly.716+f582ffdc"
"@parcel/diagnostic" "2.0.0-nightly.716+f582ffdc"
"@parcel/events" "2.0.0-nightly.716+f582ffdc"
"@parcel/fs" "2.0.0-nightly.716+f582ffdc"
"@parcel/hash" "2.0.0-nightly.2338+f582ffdc"
"@parcel/logger" "2.0.0-nightly.716+f582ffdc"
"@parcel/package-manager" "2.0.0-nightly.716+f582ffdc"
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/source-map" "2.0.0-rc.4"
"@parcel/types" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"@parcel/workers" "2.0.0-nightly.716+f582ffdc"
"abortcontroller-polyfill" "^1.1.9"
"base-x" "^3.0.8"
"browserslist" "^4.6.6"
"clone" "^2.1.1"
"dotenv" "^7.0.0"
"dotenv-expand" "^5.1.0"
"json-source-map" "^0.6.1"
"json5" "^1.0.1"
"micromatch" "^4.0.2"
"nullthrows" "^1.1.1"
"querystring" "^0.2.0"
"semver" "^5.4.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-/Srp7JOja88fuUw1EyNBqC/q3J6NGzGcZiWLAEfUOKqyXJpui/Z9vs1e/ICVZ/EdWTvQZnV7PylZZYzQFzJjFg=="
"resolved" "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"json-source-map" "^0.6.1"
"nullthrows" "^1.1.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-zJ0wXrNJ2ZsEh/HNuStuaCbnnnEl0+ZXQQPFGosJSVGZpQU4cgHHCmhDzTqQoQnu+38eK6426na1hxaXac/HMA=="
"resolved" "https://registry.npmjs.org/@parcel/events/-/events-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-8qHmGT1ULIBNSby54KlKLr5DlpPayly8BY9DcJ+Z8Zj9eUnR1pgo/eBqOP1Eq1f+sAkoEQC/vAIagKxXty5Bsg=="
"resolved" "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.0.0-nightly.2338.tgz"
"version" "2.0.0-nightly.2338"
dependencies:
"detect-libc" "^1.0.3"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-A852r467VGLmVCHMpJls3KOSxFFZ0EzI4I3Lrg1U354VygeNgK/1O7cVauZBTKMfXb99xsqhQl9lub0q6ADcUw=="
"resolved" "https://registry.npmjs.org/@parcel/fs-write-stream-atomic/-/fs-write-stream-atomic-2.0.0-nightly.2338.tgz"
"version" "2.0.0-nightly.2338"
dependencies:
"graceful-fs" "^4.1.2"
"iferr" "^1.0.2"
"imurmurhash" "^0.1.4"
"readable-stream" "1 || 2"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-66taSnkoya/s5Y9CnDIEF50ly/hEkWE8S/jqDyTm1Vz7MHi02tnJOOy62fvtBiBYArafxGayK7mLOdfucpWbnA=="
"resolved" "https://registry.npmjs.org/@parcel/fs/-/fs-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/fs-search" "2.0.0-nightly.2338+f582ffdc"
"@parcel/fs-write-stream-atomic" "2.0.0-nightly.2338+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"@parcel/watcher" "2.0.0-alpha.10"
"@parcel/workers" "2.0.0-nightly.716+f582ffdc"
"graceful-fs" "^4.2.4"
"mkdirp" "^0.5.1"
"ncp" "^2.0.0"
"nullthrows" "^1.1.1"
"rimraf" "^3.0.2"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-FwZf4upAckD4+XjXR2FnnIOSCuiVSF/N2BGt7slYtNaow2AZUaf/jEEeLISB0vwmCYAkZ3ozT8/Zv+i1NuWANA=="
"resolved" "https://registry.npmjs.org/@parcel/hash/-/hash-2.0.0-nightly.2338.tgz"
"version" "2.0.0-nightly.2338"
dependencies:
"detect-libc" "^1.0.3"
"xxhash-wasm" "^0.4.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-wXbTCxmOHLcIX5VK6pCyC7P8ATQWiNoVz2kXtTWJ7jpT4bPKX+czmcFSO5VzKXoHfRrUGQGV7q0rloc70qMR+g=="
"resolved" "https://registry.npmjs.org/@parcel/logger/-/logger-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/diagnostic" "2.0.0-nightly.716+f582ffdc"
"@parcel/events" "2.0.0-nightly.716+f582ffdc"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-jZKgMqbKmnb260jNCiK5lc6SA6UUcq6yW9vhliOFvWjqwTUHHgmXB+qkdbIqnHxTEHM1hIHczKgoIDcCfzROCA=="
"resolved" "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"chalk" "^4.1.0"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-youqRRnCoqgBirE7/4qwWBAAVhx73W076mvcqwXfH8rTinKumshBmrOo1r5+Gfh2GTcq1NNSihn+WIRlNRL9tg=="
"resolved" "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/diagnostic" "2.0.0-nightly.716+f582ffdc"
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"nullthrows" "^1.1.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-ocDVYO0JmcwaBHq9Sir20pMdNvKFK5g3cfzukOc2ExMWLyRGyHzTijf+KGzMIcu1rSJkIvFHiuv/hHFDANuJFw=="
"resolved" "https://registry.npmjs.org/@parcel/node-libs-browser/-/node-libs-browser-2.0.0-nightly.2338.tgz"
"version" "2.0.0-nightly.2338"
dependencies:
"assert" "^2.0.0"
"browserify-zlib" "^0.2.0"
"buffer" "^5.5.0"
"console-browserify" "^1.2.0"
"constants-browserify" "^1.0.0"
"crypto-browserify" "^3.12.0"
"domain-browser" "^3.5.0"
"events" "^3.1.0"
"https-browserify" "^1.0.0"
"os-browserify" "^0.3.0"
"path-browserify" "^1.0.0"
"process" "^0.11.10"
"punycode" "^1.4.1"
"querystring-es3" "^0.2.1"
"readable-stream" "^3.6.0"
"stream-http" "^3.1.0"
"string_decoder" "^1.3.0"
"timers-browserify" "^2.0.11"
"tty-browserify" "^0.0.1"
"url" "^0.11.0"
"util" "^0.12.3"
"vm-browserify" "^1.1.2"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-jibTieYTA5v9cd6nAJdzNEwmLXiUkhxhsYXup9akH2lJ0ammGXVyx5Y1QG4aXN9a8yda4WmusgYihoZvE9lyCg=="
"resolved" "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.0.0-nightly.2338.tgz"
"version" "2.0.0-nightly.2338"
dependencies:
"@parcel/diagnostic" "2.0.0-nightly.716+f582ffdc"
"@parcel/node-libs-browser" "2.0.0-nightly.2338+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"micromatch" "^3.0.4"
"nullthrows" "^1.1.1"
"querystring" "^0.2.0"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-QMGZ4dMPTew2JlPxhluV2eqw2+genEbEqdfOU8x1NVIF0PIr+7ak+x/gmMGHz/2dAGdvgZpor4jLdaGaDSpTlg=="
"resolved" "https://registry.npmjs.org/@parcel/optimizer-cssnano/-/optimizer-cssnano-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/source-map" "2.0.0-rc.4"
"cssnano" "^5.0.3"
"postcss" "^8.0.5"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-fmX1S/C5sBSopS5++fy5wa5McY4z9qzLlTTTw7VywYnX+ER2Dxf4AfAM16dRkAI53pt+DDkh/dJ9XMN5l00o1Q=="
"resolved" "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"htmlnano" "^1.0.0"
"nullthrows" "^1.1.1"
"posthtml" "^0.15.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-pRFiJ//gA9qYMHO0ASzHcp/n3C6EMM6na65HVvnwKkX7mNM+OumdJeZ87/+eMJKGled6+5DUTUrSyuSf0GCLEA=="
"resolved" "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/diagnostic" "2.0.0-nightly.716+f582ffdc"
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/source-map" "2.0.0-rc.4"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"nullthrows" "^1.1.1"
"terser" "^5.2.0"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-CJZKd0QQkeE8tioG++mPvLxykN4AvayIbkHjcqpCix2eNO2x89a3QuDoLUUOoR8/3aC0AbsnU20ftUf5WAZsuA=="
"resolved" "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/diagnostic" "2.0.0-nightly.716+f582ffdc"
"@parcel/fs" "2.0.0-nightly.716+f582ffdc"
"@parcel/logger" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"@parcel/workers" "2.0.0-nightly.716+f582ffdc"
"command-exists" "^1.2.6"
"cross-spawn" "^6.0.4"
"nullthrows" "^1.1.1"
"semver" "^5.4.1"
"split2" "^3.1.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-48P9aoErGFT0U/InxJXjoBdp9UraI1NJLSx87yx6qp+th2Df6LuM078K4TB0p1l3tYimYaIWsZVSIJtl/pTo/A=="
"resolved" "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/source-map" "2.0.0-rc.4"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"nullthrows" "^1.1.1"
"postcss" "^8.2.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-146piQKZeA4FWgUO4h7x57ObIPNJPTsZOj0CL1fQK/YvsbcedZ4aUhjKT5rXI1iA9Qo84A9gNgJ1bIBF9/JlJA=="
"resolved" "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/types" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"nullthrows" "^1.1.1"
"posthtml" "^0.15.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-OPiH/tSnnsKTjPOsdx8vsgeWsaWov2Mn791k8AA2mTcsnkK4EIMaRxI4K955OCeD0WRN4CbsivWVNVOFImn+wg=="
"resolved" "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/diagnostic" "2.0.0-nightly.716+f582ffdc"
"@parcel/hash" "2.0.0-nightly.2338+f582ffdc"
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/source-map" "2.0.0-rc.4"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"globals" "^13.2.0"
"nullthrows" "^1.1.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-XReW2B+924v/C1Vw8UNsSpSAzECe9coCAbi+ozjRiDcCkcu6CDDNZm6z9xJkpq1EO6EJVab5dkWtj1wbwHfYTw=="
"resolved" "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-ej6j4ucsGYUTqGLBg2lBZgVnTe2OAzxItEbSkk5vTR7XfKqrYIRZzjkycAG9ynyS/oeMEmTB1EwYApMtF6EFXg=="
"resolved" "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/types" "2.0.0-nightly.716+f582ffdc"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-vkVEd4jiQz+bNhEAFf0Ka1Jp5a1z3Ck/i6TLnDlQUWtGT6CZ/+gfO5rWF/z4/D0PtCfY6pAqpyT45Jw5xCtVOQ=="
"resolved" "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/types" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"chalk" "^4.1.0"
"filesize" "^6.1.0"
"nullthrows" "^1.1.1"
"ora" "^5.2.0"
"string-width" "^4.2.0"
"strip-ansi" "^6.0.0"
"term-size" "^2.2.1"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-ce9dZGWTVVXPmuvEWlpNKjN69qKpuMCTf4b4N5mE0OyVU+nOp7ZUyAsx8TBjwFYn2rSkg2XqdvXyPy1oShvDKw=="
"resolved" "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"connect" "^3.7.0"
"ejs" "^2.6.1"
"http-proxy-middleware" "^1.0.0"
"nullthrows" "^1.1.1"
"serve-handler" "^6.0.0"
"ws" "^7.0.0"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-UgF3Ahy59yJChQKaRMCMSvt3+69ETyJQuv1i3GByIl4atzs11dvNTfu02VAXGIBs48uj+2X1usYpYSXVHknJvg=="
"resolved" "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/node-resolver-core" "2.0.0-nightly.2338+f582ffdc"
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-jpTq02VA3qxYloWtmn7es7pZlZQYBNHIxkPBNqquwWFLrsMxsDUFbBDJnNtBS5ezPhZtykk5iGwMClSCBz4zcA=="
"resolved" "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"
dependencies:
"@parcel/plugin" "2.0.0-nightly.716+f582ffdc"
"@parcel/utils" "2.0.0-nightly.716+f582ffdc"
"@parcel/[email protected]+f582ffdc":
"integrity" "sha512-+b+2WaPHxWJz6E+RIjkOGUJXxSDw/kbDwzNocvjUJGBp56si93/9rXsgoQ2siXKUkx0/JFdA6AQ6S7XDbnfJ/A=="
"resolved" "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.0.0-nightly.716.tgz"
"version" "2.0.0-nightly.716"