-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
16079 lines (16079 loc) · 684 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "jitsi-meet",
"version": "0.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@amplitude/react-native": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@amplitude/react-native/-/react-native-2.7.0.tgz",
"integrity": "sha512-2dMxCVgRPwReHRDm9JKbL+sZGyozJlcdr5Jokv8TQR7idNxxGmm4YSYkjhGjSWkoEyGEyy+lh9kRJQL/DcUWJQ=="
},
"@amplitude/types": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@amplitude/types/-/types-1.10.0.tgz",
"integrity": "sha512-xN0gnhutztv6kqHaZ2bre18anQV5GDmMXOeipTvI670g2VjNbPfOzMwu1LN4p1NadYq+GqYI223UcZrXR+R4Pw=="
},
"@amplitude/ua-parser-js": {
"version": "0.7.24",
"resolved": "https://registry.npmjs.org/@amplitude/ua-parser-js/-/ua-parser-js-0.7.24.tgz",
"integrity": "sha512-VbQuJymJ20WEw0HtI2np7EdC3NJGUWi8+Xdbc7uk8WfMIF308T0howpzkQ3JFMN7ejnrcSM/OyNGveeE3TP3TA=="
},
"@amplitude/utils": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@amplitude/utils/-/utils-1.10.0.tgz",
"integrity": "sha512-/R8j8IzFH0GYfA6ehQDm5IEzt71gIeMdiYYFIzZp6grERQlgJcwNJMAiza0o2JwwTDIruzqdB3c/vLVjuakp+w==",
"requires": {
"@amplitude/types": "^1.10.0",
"tslib": "^1.9.3"
},
"dependencies": {
"tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
}
}
},
"@ampproject/remapping": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz",
"integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
"requires": {
"@jridgewell/gen-mapping": "^0.1.0",
"@jridgewell/trace-mapping": "^0.3.9"
},
"dependencies": {
"@jridgewell/gen-mapping": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
"integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==",
"requires": {
"@jridgewell/set-array": "^1.0.0",
"@jridgewell/sourcemap-codec": "^1.4.10"
}
}
}
},
"@atlaskit/analytics-next": {
"version": "8.3.1",
"resolved": "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-8.3.1.tgz",
"integrity": "sha512-vM1pMtn2IvCbUG6ZufWYJ8PUFluhUWVNtVZG+vR6ywdOC7M2bWrcfb18jBaIq2GfL/DzUQwOO3dZ2NFVpQTSLA==",
"requires": {
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
"@babel/runtime": "^7.0.0",
"prop-types": "^15.5.10",
"use-memo-one": "^1.1.1"
}
},
"@atlaskit/analytics-next-stable-react-context": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@atlaskit/analytics-next-stable-react-context/-/analytics-next-stable-react-context-1.0.1.tgz",
"integrity": "sha512-iO6+hIp09dF4iAZQarVz3vKY1kM5Ij5CExYcK9jgc2q+OH8nv8n+BPFeJTdzGOGopmbUZn5Opj9pYQvge1Gr4Q==",
"requires": {
"tslib": "^2.0.0"
}
},
"@atlaskit/blanket": {
"version": "11.4.1",
"resolved": "https://registry.npmjs.org/@atlaskit/blanket/-/blanket-11.4.1.tgz",
"integrity": "sha512-jQor3MUcsD04/lUjdW89daYw6t0gFEuWzyqYGKgDQpVeQ3n0Lfrg5S3Eogc2cbRzgKMGaET6HMB+FD6EpE2QsQ==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/ds-lib": "^1.2.0",
"@atlaskit/theme": "^11.2.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
},
"dependencies": {
"@atlaskit/ds-lib": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-1.4.2.tgz",
"integrity": "sha512-HcZbjppbWLH6cYyb/fDplUZaWabtM1qdse2zUJaACsGTSCCI1m8+T3dVCYlGn6NtzehqkabEY9DWgK/DlLzNlQ==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/theme": {
"version": "11.5.2",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-11.5.2.tgz",
"integrity": "sha512-iycVcMzGaPboTVu0s+DoeV3oZZGIxXca1IjVtlxERA/78dftYoVTjiBnh6XtAQnIgB0O+SaAOQaaHJZgJ4gwpQ==",
"requires": {
"@atlaskit/tokens": "^0.2.0",
"@babel/runtime": "^7.0.0",
"exenv": "^1.2.2",
"prop-types": "^15.5.10"
}
},
"@atlaskit/tokens": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-0.2.1.tgz",
"integrity": "sha512-Fm/F9mOC7QI5OSwvyY5N5+cvhx0lPLPAE5sE520ztb+YOaSiFxHZ13YBJkkdVTtxbGsYayYWITinGDQcCnhLog==",
"requires": {
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/button": {
"version": "15.1.4",
"resolved": "https://registry.npmjs.org/@atlaskit/button/-/button-15.1.4.tgz",
"integrity": "sha512-QlnI8db6a69LgNWjvle2ydoIuAqBBSxRNaOKO5WOzeARJV2H5pWnBU9dKBy+R9173ggPOOF6CXiWG8Hlv6nj7w==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/spinner": "^15.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/checkbox": {
"version": "12.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/checkbox/-/checkbox-12.0.0.tgz",
"integrity": "sha512-f9JqSQoOtfTFJqNdVLNKRzFQ1ldlQ8mAFLS/33DWWfQ7DbOq1fnG083LHOKN2tDSCpw/zqfkf/zUgguBCnHNNA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/codemod-utils": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@atlaskit/codemod-utils/-/codemod-utils-4.1.0.tgz",
"integrity": "sha512-k7uLovYWjO7nPwK6MWiTES8STdh/qPPX6WrppWCokHXIoemGEi1CTKpEXMHrjWyrxqzVGhux7hAb0hDMBan9Gg==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/dropdown-menu": {
"version": "10.1.2",
"resolved": "https://registry.npmjs.org/@atlaskit/dropdown-menu/-/dropdown-menu-10.1.2.tgz",
"integrity": "sha512-1E03eM0aoXxwzTzRamnRrBsC9OX1mU2YATfDb45RZRmz+kOx0bw1q5xGXLQsHpUPZFgfK8rdFy8h94qvrucKsQ==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/button": "^15.1.0",
"@atlaskit/droplist": "^11.0.0",
"@atlaskit/icon": "^21.1.0",
"@atlaskit/item": "^12.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"array-find": "^1.0.0",
"prop-types": "^15.5.10",
"react-uid": "^2.2.0"
}
},
"@atlaskit/droplist": {
"version": "11.0.9",
"resolved": "https://registry.npmjs.org/@atlaskit/droplist/-/droplist-11.0.9.tgz",
"integrity": "sha512-1uTX7FeQuxRMJ4w/lTz04nS7bKSHDodbp1e0I209kRSrn5pVdbtCvNc521ggYUVM7g0bY8rykia+QeQEy90h9w==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/icon": "^21.9.0",
"@atlaskit/item": "^12.0.0",
"@atlaskit/layer": "^9.0.0",
"@atlaskit/spinner": "^15.0.0",
"@atlaskit/theme": "^12.0.0",
"@atlaskit/tooltip": "^17.5.0",
"@babel/runtime": "^7.0.0",
"prop-types": "^15.5.10"
},
"dependencies": {
"@atlaskit/icon": {
"version": "21.10.7",
"resolved": "https://registry.npmjs.org/@atlaskit/icon/-/icon-21.10.7.tgz",
"integrity": "sha512-S1e/V1p11ULNpo3XfDXN1tP6HyxnTyHUQxU1UlEAtFQ933dGIRRur46fZiVKOpMZ9cKjlPIBjf7EBkfaQRtNQw==",
"requires": {
"@atlaskit/theme": "^12.1.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/theme": {
"version": "12.1.9",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.1.9.tgz",
"integrity": "sha512-75y9wdmtoSsccGwBeTpbces+oAoRSBKtfvK787bbKXDxLVy+zp2f/YO9wAoefL4j3n1JA3YG91C3gmoKJew4Tg==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.0.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/tooltip": {
"version": "17.5.13",
"resolved": "https://registry.npmjs.org/@atlaskit/tooltip/-/tooltip-17.5.13.tgz",
"integrity": "sha512-L/1E9uhNCytKQ8iD1nbQYjTlGk64ni5ax4uRKVTGxvvW7m9Iy04RyG0E4hHpT+s/qmYOzqkVW8PSPgmII8Rq8w==",
"requires": {
"@atlaskit/analytics-next": "^8.2.0",
"@atlaskit/ds-lib": "^2.0.0",
"@atlaskit/motion": "^1.2.0",
"@atlaskit/popper": "^5.0.0",
"@atlaskit/portal": "^4.1.0",
"@atlaskit/theme": "^12.1.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9",
"bind-event-listener": "^2.1.1",
"react-uid": "^2.2.0"
}
}
}
},
"@atlaskit/ds-lib": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-2.0.1.tgz",
"integrity": "sha512-axF/cxoOi55HHeAmzGE+a1ROqwY2bAzgXeKtpO8RRwXKu8TSSEdVJC9KE8pzTkUs69s0MKSlrz/nVGgJOrgFkQ==",
"requires": {
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^2.1.1"
}
},
"@atlaskit/field-base": {
"version": "15.0.6",
"resolved": "https://registry.npmjs.org/@atlaskit/field-base/-/field-base-15.0.6.tgz",
"integrity": "sha512-W+Le9x9N3D0Ucn8WSFAZ2P33AAYuiqnzGHtHM1/grujHKIwGY5+9oT5IQhRElT8CF0ns8800bXP9pnVF+gEN8Q==",
"requires": {
"@atlaskit/icon": "^21.9.0",
"@atlaskit/inline-dialog": "^13.0.0",
"@atlaskit/spinner": "^15.0.0",
"@atlaskit/theme": "^12.0.0",
"@babel/runtime": "^7.0.0"
},
"dependencies": {
"@atlaskit/icon": {
"version": "21.10.7",
"resolved": "https://registry.npmjs.org/@atlaskit/icon/-/icon-21.10.7.tgz",
"integrity": "sha512-S1e/V1p11ULNpo3XfDXN1tP6HyxnTyHUQxU1UlEAtFQ933dGIRRur46fZiVKOpMZ9cKjlPIBjf7EBkfaQRtNQw==",
"requires": {
"@atlaskit/theme": "^12.1.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/theme": {
"version": "12.1.9",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.1.9.tgz",
"integrity": "sha512-75y9wdmtoSsccGwBeTpbces+oAoRSBKtfvK787bbKXDxLVy+zp2f/YO9wAoefL4j3n1JA3YG91C3gmoKJew4Tg==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.0.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/field-text": {
"version": "11.0.4",
"resolved": "https://registry.npmjs.org/@atlaskit/field-text/-/field-text-11.0.4.tgz",
"integrity": "sha512-unm6oVzrzejXnbv0gH3j/oaV4UeA+j+bT2MmsOw0hmUMy3hjd4AChqB/ob604F+iuU5ETd/I7DzoEm+brpOg2Q==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/field-base": "^15.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/field-text-area": {
"version": "8.0.4",
"resolved": "https://registry.npmjs.org/@atlaskit/field-text-area/-/field-text-area-8.0.4.tgz",
"integrity": "sha512-LLeles+F8tkFdXwnyuBLRVWeobXWcZWGf32twrp3SThgrgP64HSME6rielYO/InTwdNGgDo63n6oLVLEMpRS/g==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/field-base": "^15.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/flag": {
"version": "14.1.0",
"resolved": "https://registry.npmjs.org/@atlaskit/flag/-/flag-14.1.0.tgz",
"integrity": "sha512-xpjVmXpwpknlD0gVU+tkfG35x2i8pkq2tGMkRO50EstbF+hENPgv24oIaGOQHSOANM98hnRG3aO45rTbc4QcvA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/button": "^15.1.0",
"@atlaskit/icon": "^21.0.0",
"@atlaskit/motion": "^0.4.0",
"@atlaskit/portal": "^4.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
},
"dependencies": {
"@atlaskit/motion": {
"version": "0.4.8",
"resolved": "https://registry.npmjs.org/@atlaskit/motion/-/motion-0.4.8.tgz",
"integrity": "sha512-+5hABjUNUgl66zNya+EmNXLrbJQ7EgXA+fNQih7qzu7MkIuzJjT5vEtpXrzckLKBu1v1HsbMQW90Wnd8MJugdw==",
"requires": {
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
}
}
},
"@atlaskit/icon": {
"version": "21.2.0",
"resolved": "https://registry.npmjs.org/@atlaskit/icon/-/icon-21.2.0.tgz",
"integrity": "sha512-TcM7FUSzfBYSoFbQ0cRW+1dmO9IvwD1je1MZWqeXDgQrXFgJf8iLC8ERLrJNSUKu/L0l4LokwKw+yqYPh4IuGg==",
"requires": {
"@atlaskit/theme": "^11.0.0",
"tslib": "^2.0.0",
"uuid": "^3.1.0"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@atlaskit/inline-dialog": {
"version": "13.0.9",
"resolved": "https://registry.npmjs.org/@atlaskit/inline-dialog/-/inline-dialog-13.0.9.tgz",
"integrity": "sha512-5fuh00jlhPT3AtBnX7qOfhF+CavsOFKMDCmENBFJXSrw8YftYVrQK2GDP+q64KPVK0UuEdEmpE+kC3FScaGORA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/popper": "^5.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"react-node-resolver": "^1.0.1"
}
},
"@atlaskit/inline-message": {
"version": "11.0.8",
"resolved": "https://registry.npmjs.org/@atlaskit/inline-message/-/inline-message-11.0.8.tgz",
"integrity": "sha512-qWgImWuxNXsc9a65fPpjhMO1cBN4xcY40RzO1ldPeM08GPG041f34tLjBiolmMAjBxl0XLbslqIyI4IzZP3HdQ==",
"requires": {
"@atlaskit/button": "^15.1.0",
"@atlaskit/icon": "^21.0.0",
"@atlaskit/inline-dialog": "^13.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/item": {
"version": "12.0.8",
"resolved": "https://registry.npmjs.org/@atlaskit/item/-/item-12.0.8.tgz",
"integrity": "sha512-Kc6QH8pE65YYqTUO3V5gGvDzzV5gHIzdCXTpFM80B9ztnh8liXZeszqpRrvBP4Dbj2ojAznZd53yEB3HQx0qbg==",
"requires": {
"@atlaskit/theme": "^12.0.0",
"@babel/runtime": "^7.0.0",
"prop-types": "^15.5.10",
"react-addons-text-content": "^0.0.4",
"uuid": "^3.1.0"
},
"dependencies": {
"@atlaskit/theme": {
"version": "12.1.9",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.1.9.tgz",
"integrity": "sha512-75y9wdmtoSsccGwBeTpbces+oAoRSBKtfvK787bbKXDxLVy+zp2f/YO9wAoefL4j3n1JA3YG91C3gmoKJew4Tg==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.0.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0"
}
},
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@atlaskit/layer": {
"version": "9.0.4",
"resolved": "https://registry.npmjs.org/@atlaskit/layer/-/layer-9.0.4.tgz",
"integrity": "sha512-JEDaVlG9nXDT7x2H+iNeU9yfNdaPPTbH+ow79r+aLOfpPlN5LMeTQR+eezIHNhff/+RNiAnG6jcPJplPvEwycg==",
"requires": {
"@babel/runtime": "^7.0.0",
"popper.js": "^1.14.1",
"raf-schd": "^4.0.3",
"react-scrolllock": "^5.0.1"
}
},
"@atlaskit/lozenge": {
"version": "10.1.1",
"resolved": "https://registry.npmjs.org/@atlaskit/lozenge/-/lozenge-10.1.1.tgz",
"integrity": "sha512-0ckI1z2ISgl3msrHOV4WczdgJEt/+YmWGwDjwHEstavY33a5iVvrSBnfTnaj0z1GWwzeaY4dgRtDZiz12Rc0+Q==",
"requires": {
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@compiled/react": "^0.5.2"
}
},
"@atlaskit/modal-dialog": {
"version": "11.2.4",
"resolved": "https://registry.npmjs.org/@atlaskit/modal-dialog/-/modal-dialog-11.2.4.tgz",
"integrity": "sha512-+Qe2Ai2qiBCaLm5F144Kn+M8931097mlZTbBppCrhBbanOyZJHrRkzqbCCd5NGGLpfLUZxfZaQYJssrHfGCDnA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/blanket": "^11.0.0",
"@atlaskit/button": "^15.1.0",
"@atlaskit/icon": "^21.1.0",
"@atlaskit/portal": "^4.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9",
"@emotion/styled": "^10.0.7",
"exenv": "^1.2.2",
"raf-schd": "^2.1.0",
"react-focus-lock": "^1.19.1",
"react-scrolllock": "^5.0.1",
"react-transition-group": "^4.4.1",
"react-uid": "^2.2.0",
"tiny-invariant": "^0.0.3"
},
"dependencies": {
"raf-schd": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-2.1.2.tgz",
"integrity": "sha512-Orl0IEvMtUCgPddgSxtxreK77UiQz4nPYJy9RggVzu4mKsZkQWiAaG1y9HlYWdvm9xtN348xRaT37qkvL/+A+g=="
},
"react-focus-lock": {
"version": "1.19.1",
"resolved": "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-1.19.1.tgz",
"integrity": "sha512-TPpfiack1/nF4uttySfpxPk4rGZTLXlaZl7ncZg/ELAk24Iq2B1UUaUioID8H8dneUXqznT83JTNDHDj+kwryw==",
"requires": {
"@babel/runtime": "^7.0.0",
"focus-lock": "^0.6.3",
"prop-types": "^15.6.2",
"react-clientside-effect": "^1.2.0"
}
},
"react-transition-group": {
"version": "4.4.2",
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz",
"integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==",
"requires": {
"@babel/runtime": "^7.5.5",
"dom-helpers": "^5.0.1",
"loose-envify": "^1.4.0",
"prop-types": "^15.6.2"
}
}
}
},
"@atlaskit/motion": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@atlaskit/motion/-/motion-1.2.0.tgz",
"integrity": "sha512-LW67c7Gz/wpSIue5mnekXVOHM3nmUKG8/AGA/CDgtMG17DV7XY+b9a+dH1mAHGsUkadsUznk2qkr8myeCi2Y6Q==",
"requires": {
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9",
"bind-event-listener": "^2.1.1"
}
},
"@atlaskit/multi-select": {
"version": "15.0.5",
"resolved": "https://registry.npmjs.org/@atlaskit/multi-select/-/multi-select-15.0.5.tgz",
"integrity": "sha512-vJGSthcsgVRU8PEsgL5vLJCEtftr95K632Oe6cw2/wsGx4Wq5k2ALHtciz1iGU93qyRDNpbtBYoerjCpivbVNA==",
"requires": {
"@atlaskit/droplist": "^11.0.0",
"@atlaskit/field-base": "^15.0.0",
"@atlaskit/icon": "^21.0.0",
"@atlaskit/spinner": "^15.0.0",
"@atlaskit/tag": "^11.0.0",
"@atlaskit/tag-group": "^10.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"uuid": "^3.1.0"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@atlaskit/popper": {
"version": "5.2.6",
"resolved": "https://registry.npmjs.org/@atlaskit/popper/-/popper-5.2.6.tgz",
"integrity": "sha512-S2I6AT0UtqzVcE6BjFWdZMj0nIRwwU+MW3gVohpzwwSscdGDPHCJKhLOKf2hpsw9Ka/fPn1Hk2+p4erUnJ/u8w==",
"requires": {
"@babel/runtime": "^7.0.0",
"@popperjs/core": "^2.9.1",
"react-popper": "^2.2.3"
}
},
"@atlaskit/portal": {
"version": "4.2.8",
"resolved": "https://registry.npmjs.org/@atlaskit/portal/-/portal-4.2.8.tgz",
"integrity": "sha512-Uv/RiJ5OCTUxMYvPKZl7T/RQshOVYsSZnv9srIaMiegxXyt8yL1FXtGGI8q1KmEeGUztm1dLLwUKx0TWqw2XRQ==",
"requires": {
"@atlaskit/theme": "^12.1.0",
"@babel/runtime": "^7.0.0"
},
"dependencies": {
"@atlaskit/theme": {
"version": "12.1.9",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.1.9.tgz",
"integrity": "sha512-75y9wdmtoSsccGwBeTpbces+oAoRSBKtfvK787bbKXDxLVy+zp2f/YO9wAoefL4j3n1JA3YG91C3gmoKJew4Tg==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.0.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/spinner": {
"version": "15.0.6",
"resolved": "https://registry.npmjs.org/@atlaskit/spinner/-/spinner-15.0.6.tgz",
"integrity": "sha512-yi/32OT8cU0HRywjgw2EAvdb+ILt+9lopY4B61F/pdlZCra45srAHTM3Wj4KvqhCLeZ5UNiBaSPFC21G6UZjVA==",
"requires": {
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/tabs": {
"version": "12.1.2",
"resolved": "https://registry.npmjs.org/@atlaskit/tabs/-/tabs-12.1.2.tgz",
"integrity": "sha512-/PbNIwXh0YMoo8pUjLwJfZEe+vtHENhBWuQc1pK4rW7JNBAD0VYrAJ+JLiZ+ZWGFCOoCSneoJguDBH0I2FMrqA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/tag": {
"version": "11.3.4",
"resolved": "https://registry.npmjs.org/@atlaskit/tag/-/tag-11.3.4.tgz",
"integrity": "sha512-iqjVXLrMKkluZ9F+Yd6DUmBmNUao+5iiMCd4K4ETB0n/YSXZZhILqlH3pLRB+OuQGglULJ6t0NDMWoHI/MkM4w==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/ds-lib": "^2.0.0",
"@atlaskit/icon": "^21.10.0",
"@atlaskit/motion": "^1.1.0",
"@atlaskit/theme": "^12.1.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
},
"dependencies": {
"@atlaskit/icon": {
"version": "21.10.7",
"resolved": "https://registry.npmjs.org/@atlaskit/icon/-/icon-21.10.7.tgz",
"integrity": "sha512-S1e/V1p11ULNpo3XfDXN1tP6HyxnTyHUQxU1UlEAtFQ933dGIRRur46fZiVKOpMZ9cKjlPIBjf7EBkfaQRtNQw==",
"requires": {
"@atlaskit/theme": "^12.1.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/theme": {
"version": "12.1.9",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.1.9.tgz",
"integrity": "sha512-75y9wdmtoSsccGwBeTpbces+oAoRSBKtfvK787bbKXDxLVy+zp2f/YO9wAoefL4j3n1JA3YG91C3gmoKJew4Tg==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.0.0",
"@atlaskit/tokens": "^0.10.0",
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/tag-group": {
"version": "10.0.13",
"resolved": "https://registry.npmjs.org/@atlaskit/tag-group/-/tag-group-10.0.13.tgz",
"integrity": "sha512-bcT6qq0MoyIz658Lkbw5dO6jt5rbDLpUS7q7wSOx+mxG1Q0QTinlwR9eDiRK++i5matqWVVfLq0SwyUcBpxHhQ==",
"requires": {
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/theme": {
"version": "11.0.2",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-11.0.2.tgz",
"integrity": "sha512-1lUyifZGPBFfsTBmlsL9gRVWDS1h+75qqpWJHuMN3x9TwWs9KB5lA8yLhX5/FavNcyLIDa/GIRM4DfAilhvi5w==",
"requires": {
"@babel/runtime": "^7.0.0",
"exenv": "^1.2.2",
"prop-types": "^15.5.10"
}
},
"@atlaskit/toggle": {
"version": "12.0.3",
"resolved": "https://registry.npmjs.org/@atlaskit/toggle/-/toggle-12.0.3.tgz",
"integrity": "sha512-Ee6G0MUEHjFD/AcbNAF+isNt+07qXZ9hzjSsRTeq/ioe+9ofwlsdiiQPiY631Nbb5OPDW0jtc0HRFqTUr17QgA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/icon": "^21.0.1",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/tokens": {
"version": "0.10.12",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-0.10.12.tgz",
"integrity": "sha512-ep1dtYRx7C8UIyX48CFwL7nuRqwmWDKV9x/zoBCVtKD+bxIpoQr/6A993ua3Z+KqfUxdMp+yezebSMuKpvb7jg==",
"requires": {
"@atlaskit/ds-lib": "^2.0.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.15.0",
"@babel/types": "^7.15.0"
}
},
"@atlaskit/tooltip": {
"version": "17.1.2",
"resolved": "https://registry.npmjs.org/@atlaskit/tooltip/-/tooltip-17.1.2.tgz",
"integrity": "sha512-0N63l18ZuyL2pjNXwY3pwnNos3HjOsFhSmnj2TLASC+RLz/6/Nk1k9gXuydfMjU2ntsr7xrVY5U7ING0mxAzQQ==",
"requires": {
"@atlaskit/analytics-next": "^8.1.0",
"@atlaskit/motion": "^0.4.0",
"@atlaskit/popper": "^5.0.0",
"@atlaskit/portal": "^4.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9",
"bind-event-listener": "^1.0.2"
},
"dependencies": {
"@atlaskit/motion": {
"version": "0.4.8",
"resolved": "https://registry.npmjs.org/@atlaskit/motion/-/motion-0.4.8.tgz",
"integrity": "sha512-+5hABjUNUgl66zNya+EmNXLrbJQ7EgXA+fNQih7qzu7MkIuzJjT5vEtpXrzckLKBu1v1HsbMQW90Wnd8MJugdw==",
"requires": {
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"bind-event-listener": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/bind-event-listener/-/bind-event-listener-1.0.2.tgz",
"integrity": "sha512-50S1ecl2UzqyHabspfZkZ0zp+V92ueggSm5BUFYGCHq9cD48a6bDqZeEykSWF4yFEbWDIOkl1Ly7igta9l3E7Q=="
}
}
},
"@babel/code-frame": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
"integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
"requires": {
"@babel/highlight": "^7.18.6"
}
},
"@babel/compat-data": {
"version": "7.18.8",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz",
"integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ=="
},
"@babel/core": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz",
"integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==",
"requires": {
"@babel/code-frame": "^7.16.0",
"@babel/generator": "^7.16.0",
"@babel/helper-compilation-targets": "^7.16.0",
"@babel/helper-module-transforms": "^7.16.0",
"@babel/helpers": "^7.16.0",
"@babel/parser": "^7.16.0",
"@babel/template": "^7.16.0",
"@babel/traverse": "^7.16.0",
"@babel/types": "^7.16.0",
"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/eslint-parser": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.16.0.tgz",
"integrity": "sha512-c+AsYOHjI+FgCa+ifLd8sDXp4U4mjkfFgL9NdQWhuA731kAUJs0WdJIXET4A14EJAR9Jv9FFF/MzPWJfV9Oirw==",
"dev": true,
"requires": {
"eslint-scope": "^5.1.1",
"eslint-visitor-keys": "^2.1.0",
"semver": "^6.3.0"
}
},
"@babel/generator": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.9.tgz",
"integrity": "sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==",
"requires": {
"@babel/types": "^7.18.9",
"@jridgewell/gen-mapping": "^0.3.2",
"jsesc": "^2.5.1"
}
},
"@babel/helper-annotate-as-pure": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
"integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-builder-binary-assignment-operator-visitor": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz",
"integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==",
"requires": {
"@babel/helper-explode-assignable-expression": "^7.18.6",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-compilation-targets": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz",
"integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==",
"requires": {
"@babel/compat-data": "^7.18.8",
"@babel/helper-validator-option": "^7.18.6",
"browserslist": "^4.20.2",
"semver": "^6.3.0"
}
},
"@babel/helper-create-class-features-plugin": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.9.tgz",
"integrity": "sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.18.6",
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-function-name": "^7.18.9",
"@babel/helper-member-expression-to-functions": "^7.18.9",
"@babel/helper-optimise-call-expression": "^7.18.6",
"@babel/helper-replace-supers": "^7.18.9",
"@babel/helper-split-export-declaration": "^7.18.6"
}
},
"@babel/helper-create-regexp-features-plugin": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz",
"integrity": "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.18.6",
"regexpu-core": "^5.1.0"
}
},
"@babel/helper-define-polyfill-provider": {
"version": "0.2.4",
"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.4.tgz",
"integrity": "sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==",
"requires": {
"@babel/helper-compilation-targets": "^7.13.0",
"@babel/helper-module-imports": "^7.12.13",
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/traverse": "^7.13.0",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
"resolve": "^1.14.2",
"semver": "^6.1.2"
}
},
"@babel/helper-environment-visitor": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
"integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
},
"@babel/helper-explode-assignable-expression": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz",
"integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-function-name": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz",
"integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==",
"requires": {
"@babel/template": "^7.18.6",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-hoist-variables": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
"integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-member-expression-to-functions": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz",
"integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==",
"requires": {
"@babel/types": "^7.18.9"
}
},
"@babel/helper-module-imports": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
"integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-module-transforms": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz",
"integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==",
"requires": {
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-module-imports": "^7.18.6",
"@babel/helper-simple-access": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
"@babel/helper-validator-identifier": "^7.18.6",
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-optimise-call-expression": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
"integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-plugin-utils": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz",
"integrity": "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w=="
},
"@babel/helper-remap-async-to-generator": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
"integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
"requires": {
"@babel/helper-annotate-as-pure": "^7.18.6",
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-wrap-function": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-replace-supers": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz",
"integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==",
"requires": {
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-member-expression-to-functions": "^7.18.9",
"@babel/helper-optimise-call-expression": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-simple-access": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz",
"integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-skip-transparent-expression-wrappers": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz",
"integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==",
"requires": {
"@babel/types": "^7.18.9"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
"integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-validator-identifier": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
"integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g=="
},
"@babel/helper-validator-option": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz",
"integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
},
"@babel/helper-wrap-function": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.9.tgz",
"integrity": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==",
"requires": {
"@babel/helper-function-name": "^7.18.9",
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/helpers": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz",
"integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==",
"requires": {
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/highlight": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"requires": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.9.tgz",
"integrity": "sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg=="
},
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
"integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
"requires": {
"@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz",
"integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==",
"requires": {
"@babel/helper-plugin-utils": "^7.18.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.18.9"
}
},
"@babel/plugin-proposal-async-generator-functions": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz",
"integrity": "sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==",
"requires": {
"@babel/helper-environment-visitor": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6",
"@babel/helper-remap-async-to-generator": "^7.18.6",
"@babel/plugin-syntax-async-generators": "^7.8.4"
}
},
"@babel/plugin-proposal-class-properties": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
"integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
"requires": {
"@babel/helper-create-class-features-plugin": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-proposal-class-static-block": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz",
"integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==",
"requires": {
"@babel/helper-create-class-features-plugin": "^7.18.6",
"@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-class-static-block": "^7.14.5"
}
},
"@babel/plugin-proposal-dynamic-import": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
"integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
"requires": {