-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-lock.json
5103 lines (5103 loc) · 220 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": "fulcro-app",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@atlaskit/analytics-next": {
"version": "8.3.5",
"resolved": "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-8.3.5.tgz",
"integrity": "sha512-UsQwASkjTrqJj9tnj4XU9Pr8dzqFaSlTxkyi19nhkl/rF+p50mZZzARMK9bQaqXj58BWjupOHJBhLmuQRoT/lg==",
"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/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/code": {
"version": "14.3.2",
"resolved": "https://registry.npmjs.org/@atlaskit/code/-/code-14.3.2.tgz",
"integrity": "sha512-pkgAaguNnH2roKsIisuQZ0SXY4gbTALC3MQaGy7yZrSnrRo7ll9uCn4q4HYup0hu3AsvcOgmsSXZj/RvkhfXDw==",
"requires": {
"@atlaskit/codemod-utils": "^3.4.0",
"@atlaskit/theme": "^12.1.0",
"@atlaskit/tooltip": "^17.5.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9",
"memoize-one": "^6.0.0",
"react-syntax-highlighter": "^15.4.3"
},
"dependencies": {
"@atlaskit/analytics-next": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-9.0.0.tgz",
"integrity": "sha512-9I28hJjQCwH8cEKAVjikN2F0rnZGWq7/77Od3yJ/goiEoaAKGFZjoFMFvPPpMPfxiURnisxx7/U1thgpWM6vcA==",
"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/codemod-utils": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@atlaskit/codemod-utils/-/codemod-utils-3.4.0.tgz",
"integrity": "sha512-cmKbsIQXA52HhMJf5qau8WZyqwvFvc7ToADa3Omv2KHY3DdBK2KBPg1YWVtw7I+FnzPRBLFyWNVaQTlHsUstew==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/theme": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.3.0.tgz",
"integrity": "sha512-kLWNtbcmyWthhHRXNelif2QwCz8TrYkXz/J2i6yb+H2CMDFdYI/mP1+/WJ+dv3b2YVlrbazzA/HS33RJHBJYPQ==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0"
},
"dependencies": {
"@atlaskit/codemod-utils": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/codemod-utils/-/codemod-utils-4.1.3.tgz",
"integrity": "sha512-KQ4e5DGPth2UskAsrFE3kmeVWJST2BgXABGExXnnO1LbnIPNBP/cnemVN1Pzw2JELMXyHTCeUZAoHxVcAYtD0g==",
"requires": {
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/tooltip": {
"version": "17.7.0",
"resolved": "https://registry.npmjs.org/@atlaskit/tooltip/-/tooltip-17.7.0.tgz",
"integrity": "sha512-CswGrNAeT0KxQg3mCzIzh6UC52BnVZ3nGw7f3tM7de/Md/RlonHtGKOw06oS6rzDJdWjSzBHED2cl1Y8R9cLxg==",
"requires": {
"@atlaskit/analytics-next": "^9.0.0",
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/motion": "^1.3.0",
"@atlaskit/popper": "^5.4.0",
"@atlaskit/portal": "^4.1.0",
"@atlaskit/theme": "^12.2.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0",
"@emotion/react": "^11.7.1",
"bind-event-listener": "^2.1.1",
"react-uid": "^2.2.0"
}
}
}
},
"@atlaskit/codemod-utils": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/codemod-utils/-/codemod-utils-4.1.3.tgz",
"integrity": "sha512-KQ4e5DGPth2UskAsrFE3kmeVWJST2BgXABGExXnnO1LbnIPNBP/cnemVN1Pzw2JELMXyHTCeUZAoHxVcAYtD0g==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/css-reset": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/@atlaskit/css-reset/-/css-reset-6.0.5.tgz",
"integrity": "sha512-iG4r5D/9GVNLz3lQsNXjaQsEzGQtKQfTN0s5vUvDqXr+usEYFfqCU3Dg4guoGyDo3lNhk9yqRVBpjrG+DT8fDw==",
"requires": {
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"fbjs": "^3.0.0"
}
},
"@atlaskit/ds-lib": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@atlaskit/ds-lib/-/ds-lib-2.1.2.tgz",
"integrity": "sha512-fBqL2QmBYrbYSE/SUGdcTipmBFZe1p7faZeJRpq6kzhKui7vLaDeiusvLAbDSjjiHVXUK6SCAEU9jnBwq1T19w==",
"requires": {
"@babel/runtime": "^7.0.0",
"bind-event-listener": "^2.1.1"
}
},
"@atlaskit/dynamic-table": {
"version": "14.1.5",
"resolved": "https://registry.npmjs.org/@atlaskit/dynamic-table/-/dynamic-table-14.1.5.tgz",
"integrity": "sha512-KUV4/Uy5aPybkRlYaXn/uqUH3UYgzxwkKJ4MvClJZMpasA/IjXB5oft2+ppd1SfWN4kTgBp4yS2CEx1ZpVMINg==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/pagination": "^13.0.0",
"@atlaskit/spinner": "^15.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"react-beautiful-dnd": "^12.1.1"
}
},
"@atlaskit/empty-state": {
"version": "7.1.5",
"resolved": "https://registry.npmjs.org/@atlaskit/empty-state/-/empty-state-7.1.5.tgz",
"integrity": "sha512-aFfUerEareXUYJwxXVrjiQPYNv/KLsWgIImgPlfGmdQU7ZChNf8xe8DhRqL9bSiAYcis6qLiwLxm2n62HG8kpA==",
"requires": {
"@atlaskit/button": "^15.1.0",
"@atlaskit/spinner": "^15.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/form": {
"version": "8.1.7",
"resolved": "https://registry.npmjs.org/@atlaskit/form/-/form-8.1.7.tgz",
"integrity": "sha512-IHWbJ7jqSqen/2YAOC5vkMvq6o1lbte7RJhtwRnsnsUw2e2ISpmn8PkWAEEYq/x8PdSzjUyA4aNrJoGUbbPhJA==",
"requires": {
"@atlaskit/icon": "^21.1.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"final-form": "^4.20.1",
"final-form-focus": "^1.1.2",
"lodash": "^4.17.15",
"react-uid": "^2.2.0",
"tiny-invariant": "^0.0.3"
},
"dependencies": {
"tiny-invariant": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-0.0.3.tgz",
"integrity": "sha512-SA2YwvDrCITM9fTvHTHRpq9W6L2fBsClbqm3maT5PZux4Z73SPPDYwJMtnoWh6WMgmCkJij/LaOlWiqJqFMK8g=="
}
}
},
"@atlaskit/icon": {
"version": "21.11.5",
"resolved": "https://registry.npmjs.org/@atlaskit/icon/-/icon-21.11.5.tgz",
"integrity": "sha512-84wTZvu7JepRQlCBvyxGSwAw7r0Sn5s4BxIfHgVvgDOnHZ2xnrHfGgK4DnDnMmQkRhaYbAEBFG/kCx9ZTqb+mg==",
"requires": {
"@atlaskit/theme": "^12.2.0",
"@atlaskit/tokens": "^1.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/react": "^11.7.1"
},
"dependencies": {
"@atlaskit/theme": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.3.0.tgz",
"integrity": "sha512-kLWNtbcmyWthhHRXNelif2QwCz8TrYkXz/J2i6yb+H2CMDFdYI/mP1+/WJ+dv3b2YVlrbazzA/HS33RJHBJYPQ==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/in-product-testing": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/@atlaskit/in-product-testing/-/in-product-testing-0.1.5.tgz",
"integrity": "sha512-vS6eFkQBInT0oAd9fuB1LSl4xQtQk69KVqXM1yyhHyGHLQ+T7pB9u0dnEwgUVaGxV5wSuvbz9JUGVeug1YlvWw==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/inline-dialog": {
"version": "13.5.0",
"resolved": "https://registry.npmjs.org/@atlaskit/inline-dialog/-/inline-dialog-13.5.0.tgz",
"integrity": "sha512-wTXXbAUC0FJ11MD8KOZBN9uhp+xItlw3G3ueKLcTliWR2Qzz1A+/B1RZq4QtHAxYAKJQl9p+HUYTVhxVvRdsKw==",
"requires": {
"@atlaskit/analytics-next": "^9.0.0",
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/popper": "^5.4.0",
"@atlaskit/theme": "^12.3.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0",
"@emotion/react": "^11.7.1",
"bind-event-listener": "^2.1.1",
"react-node-resolver": "^1.0.1"
},
"dependencies": {
"@atlaskit/analytics-next": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/analytics-next/-/analytics-next-9.0.0.tgz",
"integrity": "sha512-9I28hJjQCwH8cEKAVjikN2F0rnZGWq7/77Od3yJ/goiEoaAKGFZjoFMFvPPpMPfxiURnisxx7/U1thgpWM6vcA==",
"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/theme": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.3.0.tgz",
"integrity": "sha512-kLWNtbcmyWthhHRXNelif2QwCz8TrYkXz/J2i6yb+H2CMDFdYI/mP1+/WJ+dv3b2YVlrbazzA/HS33RJHBJYPQ==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/inline-edit": {
"version": "11.0.7",
"resolved": "https://registry.npmjs.org/@atlaskit/inline-edit/-/inline-edit-11.0.7.tgz",
"integrity": "sha512-6YpN5twrBF+stPViZkILAXxvEX4e685A62MEJAVACIhqcr8Uurxil84AmS4zxajdsTL4VFjWqe78oGmOaBCmCA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/button": "^15.1.0",
"@atlaskit/form": "^8.1.0",
"@atlaskit/icon": "^21.0.0",
"@atlaskit/inline-dialog": "^13.0.0",
"@atlaskit/textfield": "^4.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"react-loadable": "^5.1.0"
}
},
"@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/interaction-context": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@atlaskit/interaction-context/-/interaction-context-2.0.0.tgz",
"integrity": "sha512-t59g9MtyYGpic3QFY/L70AQoEhNn4r3UAEoM3DwVUCMbNo1rOq22T71tbiz4ReBIhwupaBbmxnyGkHjRj3NuDg==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/lozenge": {
"version": "10.0.7",
"resolved": "https://registry.npmjs.org/@atlaskit/lozenge/-/lozenge-10.0.7.tgz",
"integrity": "sha512-ZpjzlEh8yszLft2TSfG//8KtzmvCleg5BdsIWmADb9/3a2sPdBt7+KUEW8YA4tZjjjDHy3mIwsnfcVtqZ/eoKA==",
"requires": {
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/menu": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@atlaskit/menu/-/menu-0.7.0.tgz",
"integrity": "sha512-TrwOEvAT7iyFvfNPSuizJ/I8URezuHmHfhBY8sAyePv9u7GgfWDfvc/ayDtDS4XmUPe9txuUyLpOnxCoTukI5g==",
"requires": {
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/motion": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/@atlaskit/motion/-/motion-1.3.2.tgz",
"integrity": "sha512-CNYlhuwXBdVi38cb9vbEIPOai3UqJsxH79uvW6n9c6Gam1heK3VOhZ+9ymervpUSN/KtpqicZsYpoOn347RrUw==",
"requires": {
"@atlaskit/ds-lib": "^2.1.0",
"@babel/runtime": "^7.0.0",
"@emotion/react": "^11.7.1",
"bind-event-listener": "^2.1.1"
}
},
"@atlaskit/page-header": {
"version": "10.0.7",
"resolved": "https://registry.npmjs.org/@atlaskit/page-header/-/page-header-10.0.7.tgz",
"integrity": "sha512-Ni4AuUpYttvV9wgnrqG/lWx7Vykp/uD86QwEf/OgQlxOgudHmlmjAn5hpY9pafNFRrWJUOord29S2sT7mnyOzg==",
"requires": {
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/pagination": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@atlaskit/pagination/-/pagination-13.2.0.tgz",
"integrity": "sha512-MEJ5znWUQdnEhqNg8QzHAUEGURf+E1rxoINZBTzyu9k4Gn6B9h+xHa2SkYVSyeyZpv3MKYjKPIT6vdpYXx6ynA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/button": "^15.1.0",
"@atlaskit/ds-lib": "^1.2.0",
"@atlaskit/icon": "^21.4.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/platform-feature-flags": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/@atlaskit/platform-feature-flags/-/platform-feature-flags-0.1.2.tgz",
"integrity": "sha512-MUoiqUYxLnR3qjTuDU/pwCODVrM2hfIg4/mZMEQb2AOPlVyOFunt1DhAytWVCawVwiXxWOBxFromvtsd1sH+Pw==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/popper": {
"version": "5.4.11",
"resolved": "https://registry.npmjs.org/@atlaskit/popper/-/popper-5.4.11.tgz",
"integrity": "sha512-jq00dRTP50RJ39nVkADfgQrGUF0KD82UH4CUzAuEfNTHYOc04LArujz9BWqBD9ahexQK1M7ph90+rAtE5ypRVQ==",
"requires": {
"@atlaskit/in-product-testing": "^0.1.5",
"@babel/runtime": "^7.0.0",
"@popperjs/core": "^2.9.1",
"react-popper": "^2.2.3"
}
},
"@atlaskit/popup": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@atlaskit/popup/-/popup-1.0.5.tgz",
"integrity": "sha512-HnVq6vnze9D7wc4d3XR9IX7RgktEoWyYN6UKrJvjjfWZpBx5TXMlkOKi19Q20Q9zf6RcV3E5RbOMUPWWtEXwTA==",
"requires": {
"@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",
"focus-trap": "^2.4.5"
}
},
"@atlaskit/portal": {
"version": "4.2.12",
"resolved": "https://registry.npmjs.org/@atlaskit/portal/-/portal-4.2.12.tgz",
"integrity": "sha512-wWwiTOZPZa0IidB3QAZmNbi75seTc4vTXplKqnJWe49yRTcwWaTz5tEnw15iIi1iPSfM97KND3GIREjyH7CrvA==",
"requires": {
"@atlaskit/theme": "^12.2.0",
"@babel/runtime": "^7.0.0"
},
"dependencies": {
"@atlaskit/theme": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.3.0.tgz",
"integrity": "sha512-kLWNtbcmyWthhHRXNelif2QwCz8TrYkXz/J2i6yb+H2CMDFdYI/mP1+/WJ+dv3b2YVlrbazzA/HS33RJHBJYPQ==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/radio": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/@atlaskit/radio/-/radio-5.0.3.tgz",
"integrity": "sha512-bql9gL0jUp+GhnSwlUL5XybXTxC3P9qKWWv+SL3waqE30q2NWpKdYq5okb3cylTn4j6YuhQLx2LbQ4+6PjyNdw==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/section-message": {
"version": "5.0.9",
"resolved": "https://registry.npmjs.org/@atlaskit/section-message/-/section-message-5.0.9.tgz",
"integrity": "sha512-sgZxZ5yRoOrpr0+mJW53JDzFaT+lELNWamjAxiG18KKjQ8Cjl7bx8OxnLy2qNR+FERvYzCTjZu8VVTMA/1ugGw==",
"requires": {
"@atlaskit/button": "^15.1.0",
"@atlaskit/icon": "^21.1.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/select": {
"version": "14.1.0",
"resolved": "https://registry.npmjs.org/@atlaskit/select/-/select-14.1.0.tgz",
"integrity": "sha512-DW3FzoCzHGUKltTyJ+JsBwlmq8TjIE1K5XbXcAn2iGA2qPtJ3twz+yhug5y4+NP1o2P0m/3oi+XWYwdAAaUd1w==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/icon": "^21.6.0",
"@atlaskit/spinner": "^15.0.0",
"@atlaskit/theme": "^11.2.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9",
"@popperjs/core": "^2.9.1",
"@types/react-select": "^4.0.13",
"focus-trap": "^2.4.5",
"memoize-one": "^5.1.0",
"react-fast-compare": "^2.0.1",
"react-node-resolver": "^1.0.1",
"react-popper": "^2.2.3",
"react-select": "^4.3.1",
"react-uid": "^2.2.0",
"shallow-equal": "^1.0.0"
},
"dependencies": {
"memoize-one": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz",
"integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q=="
},
"react-fast-compare": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-2.0.4.tgz",
"integrity": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw=="
},
"react-select": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/react-select/-/react-select-4.3.1.tgz",
"integrity": "sha512-HBBd0dYwkF5aZk1zP81Wx5UsLIIT2lSvAY2JiJo199LjoLHoivjn9//KsmvQMEFGNhe58xyuOITjfxKCcGc62Q==",
"requires": {
"@babel/runtime": "^7.12.0",
"@emotion/cache": "^11.4.0",
"@emotion/react": "^11.1.1",
"memoize-one": "^5.0.0",
"prop-types": "^15.6.0",
"react-input-autosize": "^3.0.0",
"react-transition-group": "^4.3.0"
}
}
}
},
"@atlaskit/side-navigation": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@atlaskit/side-navigation/-/side-navigation-0.8.0.tgz",
"integrity": "sha512-XLjqLqJsKKY9GxcNxlJ1GAVikaxg8feGney+pxUpquaRD6ztz+ClRdDL4N6WnD4YrTLY8ok5OunXyXA8/cRwwA==",
"requires": {
"@atlaskit/icon": "^21.0.0",
"@atlaskit/menu": "^0.7.0",
"@atlaskit/motion": "^0.4.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/spinner": {
"version": "15.4.0",
"resolved": "https://registry.npmjs.org/@atlaskit/spinner/-/spinner-15.4.0.tgz",
"integrity": "sha512-M3+bZcS/3OKp+ib1d8KWbgB4T8R5Ayp+VXFI32/ELXmMkD7IBcWzBNr7acbv5cyXjDJse1QtHe+DjJhpCOTqEg==",
"requires": {
"@atlaskit/interaction-context": "^2.0.0",
"@atlaskit/theme": "^12.2.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0",
"@emotion/react": "^11.7.1"
},
"dependencies": {
"@atlaskit/theme": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.3.0.tgz",
"integrity": "sha512-kLWNtbcmyWthhHRXNelif2QwCz8TrYkXz/J2i6yb+H2CMDFdYI/mP1+/WJ+dv3b2YVlrbazzA/HS33RJHBJYPQ==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0"
}
}
}
},
"@atlaskit/tabs": {
"version": "13.2.6",
"resolved": "https://registry.npmjs.org/@atlaskit/tabs/-/tabs-13.2.6.tgz",
"integrity": "sha512-c0Y0TXW0IXNv4zcGlyGDLyPAbHUCdz389sGppRaCYUYL+8zH89rR76QcKJswFVKl07OjIfqYzm5GsQ7T9Za7kg==",
"requires": {
"@atlaskit/analytics-next": "^8.2.0",
"@atlaskit/codemod-utils": "^3.4.0",
"@atlaskit/theme": "^12.1.0",
"@atlaskit/tokens": "^0.6.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
},
"dependencies": {
"@atlaskit/codemod-utils": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@atlaskit/codemod-utils/-/codemod-utils-3.4.0.tgz",
"integrity": "sha512-cmKbsIQXA52HhMJf5qau8WZyqwvFvc7ToADa3Omv2KHY3DdBK2KBPg1YWVtw7I+FnzPRBLFyWNVaQTlHsUstew==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/theme": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@atlaskit/theme/-/theme-12.3.0.tgz",
"integrity": "sha512-kLWNtbcmyWthhHRXNelif2QwCz8TrYkXz/J2i6yb+H2CMDFdYI/mP1+/WJ+dv3b2YVlrbazzA/HS33RJHBJYPQ==",
"requires": {
"@atlaskit/codemod-utils": "^4.1.0",
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/tokens": "^1.2.0",
"@babel/runtime": "^7.0.0"
},
"dependencies": {
"@atlaskit/codemod-utils": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/@atlaskit/codemod-utils/-/codemod-utils-4.1.3.tgz",
"integrity": "sha512-KQ4e5DGPth2UskAsrFE3kmeVWJST2BgXABGExXnnO1LbnIPNBP/cnemVN1Pzw2JELMXyHTCeUZAoHxVcAYtD0g==",
"requires": {
"@babel/runtime": "^7.0.0"
}
},
"@atlaskit/tokens": {
"version": "1.2.9",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-1.2.9.tgz",
"integrity": "sha512-suYxv0sXOIDW/sprBk5jLNHgCd+OIoPHuMgXQ/9VkEu1KzQLtKB1Rwjb9hMtLhbf1lGrAspHPrXkR2AYfI01UQ==",
"requires": {
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/platform-feature-flags": "^0.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.15.0",
"@babel/types": "^7.15.0",
"bind-event-listener": "^2.1.1"
}
}
}
},
"@atlaskit/tokens": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-0.6.3.tgz",
"integrity": "sha512-lUYTej7rfy+CdIJaBQRTq6EiyTcGI23B7ZnSTYj8SGwdxlFyZtnKnAFRhcsPzvGJKYNtKwkmeMn1xUsaK06avw==",
"requires": {
"@atlaskit/ds-lib": "^1.4.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.15.0",
"@babel/types": "^7.15.0"
},
"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/textarea": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@atlaskit/textarea/-/textarea-4.0.1.tgz",
"integrity": "sha512-Gf6mrlTcytCdF+Q+V+37348vbuKDRyqF3mM+zkmniMWIkpkPDVJvK0xqcjqK5zS2fZuMuNWmXSr6hL3bDyFqbA==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@atlaskit/textfield": {
"version": "4.0.10",
"resolved": "https://registry.npmjs.org/@atlaskit/textfield/-/textfield-4.0.10.tgz",
"integrity": "sha512-YuctdQNeSSq7lOFL2MxyshmlktHjAC+Bg5OTTsEjch6MwNJrPdZIN94kpCUei3SV/ve8dW4H7PPNKfmSS3PC3g==",
"requires": {
"@atlaskit/analytics-next": "^8.0.0",
"@atlaskit/theme": "^11.0.0",
"@babel/runtime": "^7.0.0",
"@emotion/core": "^10.0.9"
}
},
"@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"
},
"dependencies": {
"@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/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": "1.2.9",
"resolved": "https://registry.npmjs.org/@atlaskit/tokens/-/tokens-1.2.9.tgz",
"integrity": "sha512-suYxv0sXOIDW/sprBk5jLNHgCd+OIoPHuMgXQ/9VkEu1KzQLtKB1Rwjb9hMtLhbf1lGrAspHPrXkR2AYfI01UQ==",
"requires": {
"@atlaskit/ds-lib": "^2.1.0",
"@atlaskit/platform-feature-flags": "^0.1.0",
"@babel/runtime": "^7.0.0",
"@babel/traverse": "^7.15.0",
"@babel/types": "^7.15.0",
"bind-event-listener": "^2.1.1"
}
},
"@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.21.4",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
"integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
"requires": {
"@babel/highlight": "^7.18.6"
}
},
"@babel/generator": {
"version": "7.21.4",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz",
"integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==",
"requires": {
"@babel/types": "^7.21.4",
"@jridgewell/gen-mapping": "^0.3.2",
"@jridgewell/trace-mapping": "^0.3.17",
"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-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-function-name": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
"integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
"requires": {
"@babel/template": "^7.20.7",
"@babel/types": "^7.21.0"
}
},
"@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-module-imports": {
"version": "7.21.4",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz",
"integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==",
"requires": {
"@babel/types": "^7.21.4"
}
},
"@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-string-parser": {
"version": "7.19.4",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
"integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
},
"@babel/helper-validator-identifier": {
"version": "7.19.1",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
"integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
},
"@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.21.4",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz",
"integrity": "sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw=="
},
"@babel/runtime": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz",
"integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==",
"requires": {
"regenerator-runtime": "^0.13.11"
}
},
"@babel/runtime-corejs2": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.21.0.tgz",
"integrity": "sha512-hVFDLYkuthnvQwWoOniPSq+RWyQTiimVdMXQJujoiSX8maFh/62+qRImGkRpeRflsVXXSMFS4HgNe3X9fuw5ww==",
"requires": {
"core-js": "^2.6.12",
"regenerator-runtime": "^0.13.11"
}
},
"@babel/template": {
"version": "7.20.7",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
"integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
"requires": {
"@babel/code-frame": "^7.18.6",
"@babel/parser": "^7.20.7",
"@babel/types": "^7.20.7"
}
},
"@babel/traverse": {
"version": "7.21.4",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz",
"integrity": "sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==",
"requires": {
"@babel/code-frame": "^7.21.4",
"@babel/generator": "^7.21.4",
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-function-name": "^7.21.0",
"@babel/helper-hoist-variables": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
"@babel/parser": "^7.21.4",
"@babel/types": "^7.21.4",
"debug": "^4.1.0",
"globals": "^11.1.0"
}
},
"@babel/types": {
"version": "7.21.4",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz",
"integrity": "sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==",
"requires": {
"@babel/helper-string-parser": "^7.19.4",
"@babel/helper-validator-identifier": "^7.19.1",
"to-fast-properties": "^2.0.0"
}
},
"@emotion/babel-plugin": {
"version": "11.10.6",
"resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.6.tgz",
"integrity": "sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==",
"requires": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/runtime": "^7.18.3",
"@emotion/hash": "^0.9.0",
"@emotion/memoize": "^0.8.0",
"@emotion/serialize": "^1.1.1",
"babel-plugin-macros": "^3.1.0",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "4.1.3"
},
"dependencies": {
"escape-string-regexp": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
}
}
},
"@emotion/cache": {
"version": "11.10.7",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.7.tgz",
"integrity": "sha512-VLl1/2D6LOjH57Y8Vem1RoZ9haWF4jesHDGiHtKozDQuBIkJm2gimVo0I02sWCuzZtVACeixTVB4jeE8qvCBoQ==",
"requires": {
"@emotion/memoize": "^0.8.0",
"@emotion/sheet": "^1.2.1",
"@emotion/utils": "^1.2.0",
"@emotion/weak-memoize": "^0.3.0",
"stylis": "4.1.3"
}
},
"@emotion/core": {
"version": "10.3.1",
"resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.3.1.tgz",
"integrity": "sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==",
"requires": {
"@babel/runtime": "^7.5.5",
"@emotion/cache": "^10.0.27",
"@emotion/css": "^10.0.27",
"@emotion/serialize": "^0.11.15",
"@emotion/sheet": "0.9.4",
"@emotion/utils": "0.11.3"
},
"dependencies": {
"@emotion/cache": {
"version": "10.0.29",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz",
"integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==",
"requires": {
"@emotion/sheet": "0.9.4",
"@emotion/stylis": "0.8.5",
"@emotion/utils": "0.11.3",
"@emotion/weak-memoize": "0.2.5"
}
},
"@emotion/hash": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
"integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
},
"@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
},
"@emotion/serialize": {
"version": "0.11.16",
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
"integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
"requires": {
"@emotion/hash": "0.8.0",
"@emotion/memoize": "0.7.4",
"@emotion/unitless": "0.7.5",
"@emotion/utils": "0.11.3",
"csstype": "^2.5.7"
}
},
"@emotion/sheet": {
"version": "0.9.4",
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz",
"integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="
},
"@emotion/unitless": {
"version": "0.7.5",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
"integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
},
"@emotion/utils": {
"version": "0.11.3",
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz",
"integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw=="
},
"@emotion/weak-memoize": {
"version": "0.2.5",
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
"integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
},
"csstype": {
"version": "2.6.21",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz",
"integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w=="
}
}
},
"@emotion/css": {
"version": "10.0.27",
"resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz",
"integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==",
"requires": {
"@emotion/serialize": "^0.11.15",
"@emotion/utils": "0.11.3",
"babel-plugin-emotion": "^10.0.27"
},
"dependencies": {
"@emotion/hash": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
"integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
},
"@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
},
"@emotion/serialize": {
"version": "0.11.16",
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
"integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
"requires": {
"@emotion/hash": "0.8.0",
"@emotion/memoize": "0.7.4",
"@emotion/unitless": "0.7.5",
"@emotion/utils": "0.11.3",
"csstype": "^2.5.7"
}
},
"@emotion/unitless": {
"version": "0.7.5",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
"integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
},
"@emotion/utils": {
"version": "0.11.3",