-
Notifications
You must be signed in to change notification settings - Fork 128
/
yarn.lock
9779 lines (8793 loc) · 328 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 file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 4
cacheKey: 7
"@alloc/types@npm:^1.2.1":
version: 1.3.0
resolution: "@alloc/types@npm:1.3.0"
checksum: ad1d5e2a0eb317093e2abd4261a818b3e442ef5b22bb33a1f3aefb056df61343bd21fe176b65f804dd846192f9fdbbd64bca5e5e9cb4d98ec2839ee45d76c0f2
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 033d3fb3bf911929c0d904282ee69d1197c8d8ae9c6492aaab09e530bca8c463b11c190185dfda79866556facb5bb4c8dc0b4b32b553d021987fcc28c8dd9c6c
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 05245d3b22a3ae849439195c4ee9ce9903dfd8c3fcb5124e77923c45e9f1ceac971cce4c61505974f411a9db432949531abe10ddee92937a0a9c306dc380a5b2
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/code-frame@npm:7.12.13"
dependencies:
"@babel/highlight": ^7.12.13
checksum: 471532bb7cb4a300bd1a3201e75e7c0c83ebfb4e0e6610fdb53270521505d7efe0961258de61e7b1970ef3092a97ed675248ee1a44597912a1f61f903d85ef41
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.7.5":
version: 7.12.3
resolution: "@babel/core@npm:7.12.3"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.1
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.1
"@babel/parser": ^7.12.3
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 110eb092da34c8061db81647d3110e72438a805418195238ac0bb5ab5aec0fa9be9a1ce6350d442865254e088c7ee6edafafc2fbb72f105eb70414ac211e0995
languageName: node
linkType: hard
"@babel/core@npm:^7.12.16, @babel/core@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/core@npm:7.12.17"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.12.17
"@babel/helper-module-transforms": ^7.12.17
"@babel/helpers": ^7.12.17
"@babel/parser": ^7.12.17
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.17
"@babel/types": ^7.12.17
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
semver: ^5.4.1
source-map: ^0.5.0
checksum: 4828334febd04e90d5211244f29ee7bb1e1139be6535171572e4607e27cfcf45a093e6e920f833d6dca8633e4d7e74648534c3ef5dbfbc9ac5901762b0a4a849
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.12.16":
version: 7.12.17
resolution: "@babel/eslint-parser@npm:7.12.17"
dependencies:
eslint-scope: 5.1.0
eslint-visitor-keys: ^1.3.0
semver: ^6.3.0
peerDependencies:
"@babel/core": ">=7.11.0"
eslint: ">=7.5.0"
checksum: d7d0ddc037fae11aabb975febaf152a9a9e64e954bbef3df98070e325c3d05cad9a10fc8bf3c904c9b6f502ee7ce666f1a2acb91126d517999af9a327f2d64c7
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/generator@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: e0f5f9af4f5e1ed3afd02a57b1f15a85c7adb7e4deafbda2534bb49d889d6443b1fb5494e4543e31525788db20e1426e4a89c8cbd0c55289a8fdc6da0a9700cf
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/generator@npm:7.12.17"
dependencies:
"@babel/types": ^7.12.17
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: c49e56cad0ae307561ec3989f6dcd183f8b9d6576550eb7f2f7c80f21c779c7f8407d81dca2e7830b84259cf898379ec5fea8183b921e41e369d1a32768a6c80
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.0.0":
version: 7.10.4
resolution: "@babel/helper-annotate-as-pure@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 535cdf631e1e6c0bfd6820d2509c69373e2f48148505ddc2325ce8fe85302dc5681d6f6fd41261cacc458a0431edeff7c6115056144b80b02c10e111d2941c36
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.12.13":
version: 7.12.17
resolution: "@babel/helper-create-class-features-plugin@npm:7.12.17"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-member-expression-to-functions": ^7.12.17
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0
checksum: 4ff31729369889c871fba71899b8e1c292c636af854b0d1552cc9935bb29b56563cfa654cecc951eaec47df67de0b41b84eaa95b9ee5eaaea1c20d4daae43672
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-function-name@npm:7.10.4"
dependencies:
"@babel/helper-get-function-arity": ^7.10.4
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: 41ab8f48bbb7d4a65a90a4cf50c79c386d3c30e0dac10bc3ce311fda2ca971d82289a07570a785ebac92686854237ea1e511e74f2577a38c7ec2d67f2a250a9e
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-function-name@npm:7.12.13"
dependencies:
"@babel/helper-get-function-arity": ^7.12.13
"@babel/template": ^7.12.13
"@babel/types": ^7.12.13
checksum: 25f03f303be790618437dc49c6df758d362112a564361d2eae66b58fda4f5ec09e62875473b18090b939c8d3d60b36aa7c9f688768b7fade511512d02ac9d3d0
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-get-function-arity@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 4f0ddd43405e5a43c0638ddeb9fd6fc562ce8f338983ae603d4824ce4b586c2ca2fbc0ca93864357ba3a28f699029653749c6b49ec8576cb512ab0f404500999
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-get-function-arity@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: cfb5c39959ea9f1cc21ee0f4a23054be66a615fa5392f25763ea98f0c690a5b47500af9a63f28a42a2fb3f699684c113c45a95c4ce6303dfecb3358e32e56c76
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: ae0cd0594bcc0343663747b28aa3433a312164eab259f919d184d39aed60dc2602b4cf0c7e287a22583c244cfc467b9097a289c1c4fd383f435ad10642c6a3d6
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.13, @babel/helper-member-expression-to-functions@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.17"
dependencies:
"@babel/types": ^7.12.17
checksum: a938e68961f628b5ae5468c85ab7aba2929d68b4b9c0a32352ec8fc4dd51bbed26c7ba1eb7b0eb4d8f96419dbd64aa76636e25bbb7726036963928f1610fead7
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-module-imports@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 261205f2e2c8da282af7c402089af49add550116b330cc2e9191af349da5f7930893bf147fcb1324ce71f515a287899d67ca3e644a4c94b5a1487d9dbfcda3b0
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-module-imports@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 9832436fb44361b2d7a0b7d99f18b7c0529afb94202ab92b578147aba062447e9a1cff33bc95db33189686fa922c62f23da296870958eee2f862b3aa89809159
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-module-transforms@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": ^7.12.1
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-simple-access": ^7.12.1
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/helper-validator-identifier": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
lodash: ^4.17.19
checksum: 902ed2b8e9ff45d33d20379f84b2269741a3a6108eb6c5e9e139186fd72e5bb405fac84bdcb7fae135c0cf4a5464d30bfb78ad00fc163b329aa9caa3630e7dd2
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/helper-module-transforms@npm:7.12.17"
dependencies:
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
"@babel/helper-simple-access": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
"@babel/helper-validator-identifier": ^7.12.11
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.17
"@babel/types": ^7.12.17
lodash: ^4.17.19
checksum: 72a31ce7abbbea77af393271aa8b70cba1090d61b9cf7f41cf797553acc35277d46c2ec8170c3df587587cb5ac93d35f4b0cdbc788b5e70f856b8dff87840aab
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-optimise-call-expression@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 70dd5a6daf6dc9f176dbfcac4afc1390d872821abe4ffaedf3ff0b1dbda8fb4b49efdeb612ae86c08f0773340583ce6e393a7a059727991aaa51b18de1fc0960
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-optimise-call-expression@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 5e4df5da4a45d7b7c100307efdc11f9fb460f943b4db1c60ddbdf57c3a7cbeecc8dea8980f4a9d4f3c38071b04d0e7c95af213229bcc1c13f17eb7293a6298a9
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 9f617e619a3557cb5fae8885e91cd94ba4ee16fb345e0360de0d7dc037efb10cc604939ecc1038ccdb71aa37e7e78f20133d7bbbebecb8f6dcdb557650366d92
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-plugin-utils@npm:7.12.13"
checksum: 9cdfd7790c30ed1d538804544a2f82848533e1532670c8615befa20827332d82810b582035c3e67bba86adccaa7290b981fa31cc5e2881bb346b8ee5d69b1ed6
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-replace-supers@npm:7.12.1"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.12.1
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
checksum: e745f78b48647975392517c64df9311308f1badec3ca911d21126ba2f3f4aa36b4c31ad42f4cba4813d5b44f6c0417b2649d2d9991332f881d59ff25ab32c2a2
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-replace-supers@npm:7.12.13"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.12.13
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
checksum: 1a433f4e4b0a1fc7fbcf4884a12abd75873269f8978c66a72a63e5ba83614c2208851111100d0dc25b9f3bc15e244356810b581d3e8b8cb2c11f8c42f2673400
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-simple-access@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: ca44e3f694957d4026e2837905cd4f4ec60d73f49f8d65d8592afa6d797cb000f261ce7db1ed3e14b51200467f4c04917cb84ebe395f3d153462ccce1b980322
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-simple-access@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 34f19da4b8129006d660ff6d704d493a447852268a1360727a7de32087c7cead4c2548a3bb73c8fee7afa2dcad85087d53f9b0cabe071f3bf5cc27f35de9e7c8
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-split-export-declaration@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: ddfc44d0cf75ee3a73e71b18e8b9b67d256f6e8496e550ab0b1342ef8cd62dd232c13ac77569e319869b1515a9733863e69a143e76f52e9fc1b51ee374b8869b
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-split-export-declaration@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: c8d529558c45855542b7094de7b08e6c6de34922037a71596545dbb7a3be6ebf61b8b3193afe85fa5c9c35bcb0cc94110866deab8028f73e500bdc62427532c9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 25098ef842e3ffecdd9a7216f6173da7ad7be1b0b3e454a9f6965055154b9ad7a4acd2f218ba3d2efc0821bdab97837b3cb815844af7d72f66f89d446a54efc6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-identifier@npm:7.12.11"
checksum: 18de432203264b501db2690b53370a4289dc56084f5a2c66de624b159ee28b8abaeb402b2b7584296d9261645d91ddb6bfd21125d3ffd9bf02e9262e77baf3d2
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helpers@npm:7.12.1"
dependencies:
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
checksum: bbea976e6900dfe1c55bd8425ef982839650a1190859eae9a7cae737332b71375ea74e83863399d2941800142bdbe876829827907096d36685d7a980511c1d86
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/helpers@npm:7.12.17"
dependencies:
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.17
"@babel/types": ^7.12.17
checksum: cce588e89abfbb171909c4359c8cbe06c7a414b4a122ff5c974be62ef5f2ada7ef93b7ea4edb594239ceb161fcfb9070e939142ba8e00026bcaad628693291ea
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: c167b938af9797e7630dd922398ceb1a079469085b9c0a7274f093f9f2b1ef9f0a5efec89592e81cbab7c87a537d32c238cea97d288b7af9a0d26b2bceb7a439
languageName: node
linkType: hard
"@babel/highlight@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/highlight@npm:7.12.13"
dependencies:
"@babel/helper-validator-identifier": ^7.12.11
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 83a3a2cc961b9e17fb75bd57ebf90cf07be6ec4263d74b60c435c28bcb045c474f0162eaa921ad7b44429d7624ec49b41cae416e475d3f747ccda678be1f7a8f
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.10.4, @babel/parser@npm:^7.12.1, @babel/parser@npm:^7.12.3":
version: 7.12.3
resolution: "@babel/parser@npm:7.12.3"
bin:
parser: ./bin/babel-parser.js
checksum: 3605bcf97e956ef36506ccb7e0ca4432025d8992c7e1f5d5b03976750a1198a0b27f461ab9304dbc5319a154b5ea19c09e72f87bfc5c08dd2780428734e13339
languageName: node
linkType: hard
"@babel/parser@npm:^7.12.13, @babel/parser@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/parser@npm:7.12.17"
bin:
parser: ./bin/babel-parser.js
checksum: 33410998363b408bfe2f620249ff089da7bca3d56aae3a3a638b001ab3a44ffce44075b672f5e01fa4483fe013d6f7e672c77c29febd5f0efe8f6c3f80533ad5
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4fc7b094c3ca8fc1153a30030c30e919d376da05bfd47a990b74e5274846cc618dd9769e7c555939522f1c57f3021da15922348b895e9cd137d141c1b90b057b
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-decorators@npm:7.12.13"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-decorators": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: be73666ef9851ec2a448aad72d908d0ca3d9735c7098a7ceb9f51e42f4f91eedc859d2b69b1a965e13817eccbb5920eae032f5276078b4f87ead9996c50994e0
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8c9b610377af48e1d8ec0d5ad5eec5e462fbc775b20f367e0ebc2656b98b4cc73a952e8b5ab8641e6de0d04923f3843dd73ce00a71ef5cac9940822ff776c8ec
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b5e354a0cd18f67f29e59cdaa80f9e50839ed9d3d8e1fca2964431fa474d08c3ca4cd1f61d0bcb577e8451c541e45e0e702e6feca5483ecd4e265ef5a0b70d42
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-decorators@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6a07456fe84979ff1417cb14db464827c361d685472ece866eed188ef4c4a4d926cf66d904e1d9c194081e10daa68656d19a18bf8759ac608bfd71be242f5de0
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 685ee8f0b5b675952e02e1cabcde4d92638918a66ed515b2663e2e0b2246210a0768325423d5642f8687653a449357826675ccfcb712676be260a0ae13313828
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5b82f717707d278e58d12649932bf3327923361f051cd4517a5b63d7ebfe39cb6cdfb37aa199b5a441db305301a3c8de01c946d25d1f4c4ecb94322a23ac9e73
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4ba03753759a2d9783b792c060147a20f474f76c42edf77cbf89c6669f9f22ffb3cbba4facdd8ce651129db6089a81feca1f7e42da75244eabedecba37bd20be
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47ae8782939ccc41f94b1d46b8b7a63363b003b8b7544bddae8dd454a8d51b38bbd4f9c26e91ecfb5fc16dc5f2228700e3030def63c5d07046073ec8fabc4665
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: db5dfb39faceddba8b80c586e331e17c3a1f79941f80eaa070b91fb920582bffe8bba46f6bebbdaf7c1f9b0bbe2a68493c28e1c9fb0ced864da739c0cd52ce43
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-top-level-await@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9767e46ddc1add9133a21f5d6c4452e9a62f891fe1db5d8291f62f9036f9e697bc118adad43109a8740ac15769e9489d68d134b17cfe9f3bdf06d2c50c9c6dce
languageName: node
linkType: hard
"@babel/runtime-corejs3@npm:^7.10.2":
version: 7.11.2
resolution: "@babel/runtime-corejs3@npm:7.11.2"
dependencies:
core-js-pure: ^3.0.0
regenerator-runtime: ^0.13.4
checksum: 151da4e97bb558d5a58e2a94eb89bcd505b7273c00b6ad8fe1988aefbe16aee01aa83dba0e90e56370a3e99d974d4f5fb081a6489161dc414e322d70bf19bc92
languageName: node
linkType: hard
"@babel/runtime@npm:7.12.5, @babel/runtime@npm:^7.12.5":
version: 7.12.5
resolution: "@babel/runtime@npm:7.12.5"
dependencies:
regenerator-runtime: ^0.13.4
checksum: 423fb0079353db2faa0dad0cbdf0a90fbc5b511d1f77e5645d1aa0b144a144e24502bb023c12a31d7dca63b6e16ae36afa59992f0404e92e21de211051c361e3
languageName: node
linkType: hard
"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.9.2":
version: 7.12.1
resolution: "@babel/runtime@npm:7.12.1"
dependencies:
regenerator-runtime: ^0.13.4
checksum: 979d1c099c386031f96a952ee903e7bc3c60ae6e4eefe2bf49e4224014542d4ac2b1e2fb708031da36501a3842d4442dfdab38ab359ab3f46634b3c7cb5f6c6e
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.18":
version: 7.12.18
resolution: "@babel/runtime@npm:7.12.18"
dependencies:
regenerator-runtime: ^0.13.4
checksum: cb9e0c51b8e6e294ed5f52992d3fac13eb33b346760ef8eb0b3cb7542bb7c88c0297e2d878082255f91677e81e9cfcb00c38b3e55771a1ad9451647c6dd6a974
languageName: node
linkType: hard
"@babel/template@npm:^7.10.4, @babel/template@npm:^7.3.3":
version: 7.10.4
resolution: "@babel/template@npm:7.10.4"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/parser": ^7.10.4
"@babel/types": ^7.10.4
checksum: 23a5c4f7ab77d3f0cfeca3f8462f3b8a85d605d7c56bd917b46e9061aca2c8e84558d1209b8e365eb0e038d92fc387d42382c3072e3ad75087f9a04649e7bea6
languageName: node
linkType: hard
"@babel/template@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/template@npm:7.12.13"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/parser": ^7.12.13
"@babel/types": ^7.12.13
checksum: 665977068a7036233b017396c0cd4856b6bb2ad9759e95e2325cbd198b98d2e26796f25977c8e12b5936d7d94f49cf883df9cffa3c91c797abdf27fc9b6bec65
languageName: node
linkType: hard
"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.12.1, @babel/traverse@npm:^7.4.5":
version: 7.12.1
resolution: "@babel/traverse@npm:7.12.1"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.1
"@babel/helper-function-name": ^7.10.4
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/parser": ^7.12.1
"@babel/types": ^7.12.1
debug: ^4.1.0
globals: ^11.1.0
lodash: ^4.17.19
checksum: a3040d94b72ba4214dc63b3d5f3517874dc8a72991a4c6916f48b756567e20c53c796feca6340db6edad9d48e7a9075e351c9b8daa0ed179d498cb80865be9da
languageName: node
linkType: hard
"@babel/traverse@npm:^7.12.13, @babel/traverse@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/traverse@npm:7.12.17"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.12.17
"@babel/helper-function-name": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
"@babel/parser": ^7.12.17
"@babel/types": ^7.12.17
debug: ^4.1.0
globals: ^11.1.0
lodash: ^4.17.19
checksum: 7527079172e4db7b9c189fc5c69ce9e1b29f0c9d22c5a081452b9920d3b6149c51c072cfb2a80f1774a0b3a003cc442b701569972de8e533d489313164156070
languageName: node
linkType: hard
"@babel/types@npm:7.8.3":
version: 7.8.3
resolution: "@babel/types@npm:7.8.3"
dependencies:
esutils: ^2.0.2
lodash: ^4.17.13
to-fast-properties: ^2.0.0
checksum: d3a4f0b6bc04f3c3fd51eb32eefa4e4bc8b811801d13e430bad302c5374a1962d4e126931418e439e3a33eda63f009091722231c275ecd13240e734510311c16
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.10.4, @babel/types@npm:^7.11.0, @babel/types@npm:^7.12.1, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/types@npm:7.12.1"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
lodash: ^4.17.19
to-fast-properties: ^2.0.0
checksum: 0747b064093126e3ceba410c78e8ea438ed84cd68ad8abb2f98ffe88e2b600406096553bb5ef28cd40b29e68122820fe98e31ddfd0318fbb0efc2f4080d3417a
languageName: node
linkType: hard
"@babel/types@npm:^7.12.13, @babel/types@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/types@npm:7.12.17"
dependencies:
"@babel/helper-validator-identifier": ^7.12.11
lodash: ^4.17.19
to-fast-properties: ^2.0.0
checksum: 31886bfea9c34d2d019722888d944fe5e33495826ae677ea465f0615294925a08eb4059d34b29f2808461cde85841b93ca61cdcd747fa45054a64f6b33fa2862
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 4fc6fb784b09d2e994fc9180dc8af9f674a4e5114cd2c52754e689f87725e670d0919728945fe3991d434109e42e5ac6f9d85c58a566e2a645eb9dda68eead6a
languageName: node
linkType: hard
"@cnakazawa/watch@npm:^1.0.3":
version: 1.0.4
resolution: "@cnakazawa/watch@npm:1.0.4"
dependencies:
exec-sh: ^0.3.2
minimist: ^1.2.0
bin:
watch: cli.js
checksum: 7909f89bbee917b2a5932fd178b48b5291f417293538b1e8e68a5fa5815b3d6d4873c591d965f84559cd3e7b669c42a749ab706ef792368de39b95541ae4627d
languageName: node
linkType: hard
"@discohook/site@workspace:.":
version: 0.0.0-use.local
resolution: "@discohook/site@workspace:."
dependencies:
"@babel/core": ^7.12.17
"@babel/plugin-proposal-class-properties": ^7.12.13
"@babel/plugin-proposal-decorators": ^7.12.13
"@babel/runtime": ^7.12.18
"@next/bundle-analyzer": ^10.0.7
"@popperjs/core": ^2.8.3
"@reach/slider": ^0.13.2
"@reach/tabs": ^0.13.2
"@react-spring/web": ^9.0.0-rc.3
"@testing-library/dom": ^7.29.6
"@testing-library/jest-dom": ^5.11.9
"@testing-library/react": ^11.2.5
"@testing-library/user-event": ^12.7.2
"@types/caniuse-lite": ^1
"@types/jest": ^26
"@types/node": ^14
"@types/react": ^17
"@types/react-dom": ^17
"@types/react-is": ^17
"@types/styled-components": ^5
"@types/testing-library__jest-dom": ^5
"@typescript-eslint/eslint-plugin": ^4.15.1
"@typescript-eslint/parser": ^4.15.1
babel-plugin-styled-components: ^1.12.0
browserslist: ^4.21.3
caniuse-lite: ^1.0.30001373
core-js: ^3.9.0
core-js-bundle: ^3.9.0
date-fns: ^2.17.0
eslint: ^7.20.0
eslint-import-resolver-node: ^0.3.4
eslint-plugin-import: ^2.22.1
eslint-plugin-react: ^7.22.0
eslint-plugin-react-hooks: ^4.2.0
eslint-plugin-unicorn: ^28.0.2
fake-indexeddb: ^3.1.2
highlight.js: ^10.6.0
idb: ^6.0.0
jest: ^26.6.3
mobx: ^5.15.7
mobx-react-lite: ^2.2.2
mobx-state-tree: ^3.17.3
mstform: "patch:[email protected]#./patches/mstform+1.27.0.patch"
next: ^10.0.7
polished: ^4.1.1
prettier: ^2.2.1
punycode: ^2.1.1
react: ^17.0.1
react-dom: ^17.0.1
react-focus-on: ^3.5.1
react-is: ^17.0.1
react-merge-refs: ^1.1.0
regenerator-runtime: ^0.13.7
resize-observer-polyfill: ^1.5.1
simple-markdown: ^0.7.3
styled-components: ^5.2.1
typescript: ^4.1.5
url: ^0.11.0
languageName: unknown
linkType: soft
"@emotion/is-prop-valid@npm:^0.8.8":
version: 0.8.8
resolution: "@emotion/is-prop-valid@npm:0.8.8"
dependencies:
"@emotion/memoize": 0.7.4
checksum: 4a6993c4e6a49bcdc772aa5931fa2f00ce6367f7f6fc9cfe46dd50014c9510f9c6b1e355f297655875a8bfd1481e42546900bbbc84f3c0b629a001b4d82e436e
languageName: node
linkType: hard
"@emotion/memoize@npm:0.7.4":
version: 0.7.4
resolution: "@emotion/memoize@npm:0.7.4"
checksum: 874123a94c89963dda3438d1ea7f7c17fa670d965610eefaa49e0dbf47cccee6f6108e04175867d7e485d2c04096a98bba5a4bef2606b3bf2070637327ebe3ff
languageName: node
linkType: hard
"@emotion/stylis@npm:^0.8.4":
version: 0.8.5
resolution: "@emotion/stylis@npm:0.8.5"
checksum: bb43a77f784cce86f7a625519544aab56b8f341117957f7dd15315398780289784bd2ec0ba1bc1b19ac639bdb304a4ed08b1f8e3e4c13e8063b9824e551b3994
languageName: node
linkType: hard
"@emotion/unitless@npm:^0.7.4":
version: 0.7.5
resolution: "@emotion/unitless@npm:0.7.5"
checksum: 0be366ef09860037ef08aed0450cb5510f4be25886005e2f120f8e8b7385de6b41ac47df5b9bd55781e5153853e9ed5f49aa517dcbad34cc23bd8afb0201932a
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^0.3.0":
version: 0.3.0
resolution: "@eslint/eslintrc@npm:0.3.0"
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.20
minimatch: ^3.0.4
strip-json-comments: ^3.1.1
checksum: 00e87c194672eb85dcea22ba749fb3cabdd9768e952e748b2c727940f06691c873369d75cf3bddb239301eca8c38de6e098b0de4839fa7c16a2062e536e8ff5a
languageName: node
linkType: hard
"@hapi/accept@npm:5.0.1":
version: 5.0.1
resolution: "@hapi/accept@npm:5.0.1"
dependencies:
"@hapi/boom": 9.x.x
"@hapi/hoek": 9.x.x
checksum: 29e3281bd823fbb36d3b838cc25df4c26a9e5db4ed5b36919cf51fe63110e7cddfe3f3b1a88acf31dfe6c0f9c4be449cbe7e58429fa3597698aa1b1ea653d57a
languageName: node
linkType: hard
"@hapi/boom@npm:9.x.x":
version: 9.1.0
resolution: "@hapi/boom@npm:9.1.0"
dependencies:
"@hapi/hoek": 9.x.x
checksum: 77b566e295e7571d7c9b525b7c840016e6edeaa5c1e473af758ca945668d8a87a34c7452f29c3694495925d7af9f0a9bffbf217650051273abb3e77eb0c2716f
languageName: node
linkType: hard
"@hapi/hoek@npm:9.x.x":
version: 9.1.0
resolution: "@hapi/hoek@npm:9.1.0"
checksum: c77ac8f0c1ae6e21b3d77fa63f462dc1b0c84481388f5e54c651e86cf565d58cb701c396a1fa86a746d5dc278013ad5b3513a58c4cb19a493802d17b68c90740
languageName: node
linkType: hard
"@istanbuljs/load-nyc-config@npm:^1.0.0":
version: 1.1.0
resolution: "@istanbuljs/load-nyc-config@npm: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
checksum: f7f3b1c922bf5e36a7f747b2a80fedc9c2e1ebd7e03dc73082fca7c1066cc4e2e2ac39827aded6a087c32294e9c032ff3e50bc9041fcf757b4a38ca97418b652
languageName: node
linkType: hard
"@istanbuljs/schema@npm:^0.1.2":
version: 0.1.2
resolution: "@istanbuljs/schema@npm:0.1.2"
checksum: ebc6bd5f14aca7dd229d3e03aaab47c4c9a1ae25c892d6370d786c7a06128b4e03f60b31b10408010b701e1982087c1e2dae798e66cb57b44c7883228693f8e4
languageName: node
linkType: hard
"@jest/console@npm:^26.6.2":
version: 26.6.2
resolution: "@jest/console@npm: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
checksum: 72920a893e4a622ce96786eb1d3f6ef0c88c9d1ec32fffbde4e25f582b5f1ccd5f5b7a370c0b1a4917fb74c046467f43422c0039c497df4b307527910759e0a5
languageName: node
linkType: hard
"@jest/core@npm:^26.6.3":
version: 26.6.3
resolution: "@jest/core@npm: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
checksum: e0d35e40fcbda21997dbc126722db92f8d534926c9bcf4a30ee79aa772e40ead2fefd405866e3364bff7ee50b12f03705c3fea5491b77807091961b2c3a0d65e
languageName: node
linkType: hard
"@jest/environment@npm:^26.6.2":
version: 26.6.2
resolution: "@jest/environment@npm:26.6.2"
dependencies:
"@jest/fake-timers": ^26.6.2
"@jest/types": ^26.6.2
"@types/node": "*"
jest-mock: ^26.6.2
checksum: a4f426546801e79d2f5d1a516d80c330ccbe1638f7a7705f65110ac33f8a3ded08ccef75ad648610618122f2bfeba34e0c1e616eccc219a315956d63ff30d8fc
languageName: node
linkType: hard
"@jest/fake-timers@npm:^26.6.2":
version: 26.6.2
resolution: "@jest/fake-timers@npm: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
checksum: a82aa6d2f31d5e9958484b32e4714cb2ebca6ce6baf590c29505c8eea638663bf27f27b98a30ab574023cb15ecffbe70dc75d14694d76c4ccc78bee37d2ec1d1
languageName: node
linkType: hard
"@jest/globals@npm:^26.6.2":
version: 26.6.2
resolution: "@jest/globals@npm:26.6.2"
dependencies:
"@jest/environment": ^26.6.2
"@jest/types": ^26.6.2
expect: ^26.6.2
checksum: d8f68a24adf87f6e32ba34ec884502ec067ed79a2855852ed64daa50383a53daf2b97487dd049e77c6fd6cade28b32f8cad4f0a2d02ce6b8aa23f95a136db8a7
languageName: node
linkType: hard
"@jest/reporters@npm:^26.6.2":
version: 26.6.2
resolution: "@jest/reporters@npm: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