-
Notifications
You must be signed in to change notification settings - Fork 26
/
package-lock.json
9810 lines (9810 loc) · 379 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": "xioo-docs",
"version": "1.5.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ant-design/colors": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz",
"integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==",
"requires": {
"@ctrl/tinycolor": "^3.4.0"
}
},
"@ant-design/icons": {
"version": "4.7.0",
"resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-4.7.0.tgz",
"integrity": "sha512-aoB4Z7JA431rt6d4u+8xcNPPCrdufSRMUOpxa1ab6mz1JCQZOEVolj2WVs/tDFmN62zzK30mNelEsprLYsSF3g==",
"requires": {
"@ant-design/colors": "^6.0.0",
"@ant-design/icons-svg": "^4.2.1",
"@babel/runtime": "^7.11.2",
"classnames": "^2.2.6",
"rc-util": "^5.9.4"
}
},
"@ant-design/icons-svg": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz",
"integrity": "sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw=="
},
"@ant-design/react-slick": {
"version": "0.28.4",
"resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-0.28.4.tgz",
"integrity": "sha512-j9eAHTn7GxbXUFNknJoHS2ceAsqrQi2j8XykjZE1IXCD8kJF+t28EvhBLniDpbOsBk/3kjalnhriTfZcjBHNqg==",
"requires": {
"@babel/runtime": "^7.10.4",
"classnames": "^2.2.5",
"json2mq": "^0.2.0",
"lodash": "^4.17.21",
"resize-observer-polyfill": "^1.5.0"
}
},
"@aomao/engine": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/engine/-/engine-2.8.14.tgz",
"integrity": "sha512-to8OZl9OE2M2Bl1m02Qn7DJmpuT36OYsaWafGS7ydk8aeu5L1bSS/9vamHWhEvzv9uN3sljKNwDrX0O2/RbrhA==",
"requires": {
"@babel/runtime": "^7.13.10",
"blueimp-md5": "^2.18.0",
"copy-to-clipboard": "^3.3.1",
"diff-match-patch": "^1.0.5",
"dom-align": "^1.12.2",
"eventemitter2": "^6.4.4",
"filesize": "^6.3.0",
"is-hotkey": "^0.2.0",
"lodash": "^4.17.21",
"ot-json0": "^1.1.0",
"tinycolor2": "^1.4.2"
}
},
"@aomao/plugin-alignment": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-alignment/-/plugin-alignment-2.8.14.tgz",
"integrity": "sha512-wMYhnE0ab3fzoL+wc0uFnzdxQgyDh6DKVtxDyvQTyv3vvoP9/2868U63fEwMUToV6AfjVQ1i3MFDcHsfug/fRg==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-backcolor": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-backcolor/-/plugin-backcolor-2.8.14.tgz",
"integrity": "sha512-J9l9TvBe4AXwULiIcN69Alr342qhUqz41Unp256mpJ8889MCDH6Dk+4maOGmfy+03ezqN+Up445VzwMQGsLYZg==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-bold": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-bold/-/plugin-bold-2.8.14.tgz",
"integrity": "sha512-QXJqQdRpijRVFlrz/3sKou77GcT0xHZ6iLhgrlEFDQNEMYVPKsggTpqDrY5JeeTKKgkPOupZGXm3Ju4pdMxLEw==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-code": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-code/-/plugin-code-2.8.14.tgz",
"integrity": "sha512-Lv3o/kFEtQbKc1e9l9rmQCdUFiuxDxlpY8dH01Q00bcp7Zl8u7Yew326q8QzwJ6XWKV07fWsEigclD93VEXWiA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-codeblock": {
"version": "2.8.16",
"resolved": "https://registry.npmjs.org/@aomao/plugin-codeblock/-/plugin-codeblock-2.8.16.tgz",
"integrity": "sha512-Xa68+rkF5VNyQgIo6DgxB9EBklrP30WaUE+7FuxXAIdC3fAdSfkUjbkhz49/hitOy4wbmEfKw7ycrpkWhOgYNg==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10",
"antd": "^4.14.1",
"codemirror": "^5.61.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
},
"@aomao/plugin-embed": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-embed/-/plugin-embed-2.8.14.tgz",
"integrity": "sha512-eYL408QrT+SoWFsUnBI681pkeLlm6lYZcp3IbznaZ3xuqSVep/bdy86HObv7UvY3krsA5/xuLHXgExlIyIDUMA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-file": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-file/-/plugin-file-2.8.14.tgz",
"integrity": "sha512-UavY5TI0elo1AAavFvAYSdJI11T6l8THEsttSiTL/1lmRmVCN5+vZ/lCnynaAAorjtIc7SmtF1G0cxLgzPPH0w==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-fontcolor": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-fontcolor/-/plugin-fontcolor-2.8.14.tgz",
"integrity": "sha512-zHMHIxvTnXUhWqh3XdyqE3sTVaGp71zljpAVXiwCIZTp/eFwuIjT6xG0hGdLTVPxNgo0n3tVVpLVlcWXBgWYrA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-fontfamily": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-fontfamily/-/plugin-fontfamily-2.8.14.tgz",
"integrity": "sha512-GwsDvj7JGe7SR5ps2M/h8QiEP4byeIfqlVNFx9ytdFvV0yXwAiiEQ4ubaLuQ5ac1b5FLOZkn+L6AyIU8Tb/uOw==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-fontsize": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-fontsize/-/plugin-fontsize-2.8.14.tgz",
"integrity": "sha512-tpQbT3JQMYkem9L6e/fbN5SXf3FUZluYKVPhbb0UHu+QegQ7oFIT8PQ1vE3LMt+RHWdVJYfBryv0cB8PvXiiHw==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-heading": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-heading/-/plugin-heading-2.8.14.tgz",
"integrity": "sha512-Bxsx/mU0vL9z4TLjkgMAVa1I77u3d2bAdnjLTITJw4QIq7SFu7NgO9/X7rFHAVsy43h+58uUJhfV4zJpebxYRA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-hr": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-hr/-/plugin-hr-2.8.14.tgz",
"integrity": "sha512-M8I0amWmTB2VBrtD67rc69XSynOxgw28lxjqSj4zF2VUMR9fSslQ4FupX9b24OYXO2LLK6mUQVP7wNWmj9xUIQ==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-image": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-image/-/plugin-image-2.8.14.tgz",
"integrity": "sha512-+a68sdquyOM3Cp/7Lqzd6JRuZa73bhAeHe2L/b0JNAAmV252C5AhtwJNXFgZSXkDz3Lx7lLpLfm2f0LnCWAPfQ==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10",
"eventemitter2": "^6.4.4",
"photoswipe": "^4.1.3"
}
},
"@aomao/plugin-indent": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-indent/-/plugin-indent-2.8.14.tgz",
"integrity": "sha512-0ORiW+BnijE59qkgBcjkBw9ivdFM0a5H00YRZDwxZig2rK433cXIcrRheSbS4GnpHnk9ajHT2zlDQQj1uU9DoA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-italic": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-italic/-/plugin-italic-2.8.14.tgz",
"integrity": "sha512-mpAggLB1ZQDFHpgR629YoZQGn60yoskjwoHzZSKtv4U403Bn7mEHzY/3w4o/ecic8Rx1HlUAt4B3Mhz3jdfG4w==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-line-height": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-line-height/-/plugin-line-height-2.8.14.tgz",
"integrity": "sha512-SpTjDaWF9y5qNyKfPAgQ8upyC5DPKIrdL/k2gXiqgiRDMBtxVRQHOiUE65+PBwKiHOUcJT7OkLwjLWPhJMKEZw==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-link": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-link/-/plugin-link-2.8.14.tgz",
"integrity": "sha512-cXCLQUf1zDU/8tJThz99Ytw502ks0oEnVax5YoSdwFmbBVzfKynALawryH7wYuz00ZirQEHJqvdCi+Oi7+YF1Q==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10",
"antd": "^4.12.3",
"classnames-es-ts": "^2.2.7",
"react": "^17.0.1",
"react-dom": "^17.0.2"
}
},
"@aomao/plugin-math": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-math/-/plugin-math-2.8.14.tgz",
"integrity": "sha512-2IKvfqb4wEJm/HOvKNDUWLWr8XLi63HsDRaBuL/VG+Vi+FOGjV7EBdR/Bzr7uiBZnzVND+F7JaJJc4pZM5/2og==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10",
"lodash": "^4.17.21"
}
},
"@aomao/plugin-orderedlist": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-orderedlist/-/plugin-orderedlist-2.8.14.tgz",
"integrity": "sha512-FoF6NQo1ZE08S+G0olITEA9tWaSqiJ6QAXMkJfaAPUBRQmu5xI6+KgFWn5XXTOWfd+Xm26PQcXFqmBJLxBf01w==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-paintformat": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-paintformat/-/plugin-paintformat-2.8.14.tgz",
"integrity": "sha512-OW8wun2Z08VMEUlgM9kz2yhQOTG638Loa5OLY1MZFPl3nLfswC6847G2SJWeiAQhkdAqXv/GDoZFB9VnvXZTkQ==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-quote": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-quote/-/plugin-quote-2.8.14.tgz",
"integrity": "sha512-9+V6uAF1BYyU5+OEf34J45FZM0uyunp+RFCYLjQ2zZo9iv3V89ys3ZDPVkC5AP9PP5TwcV0hIyAxupMc8Y3FeA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-redo": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-redo/-/plugin-redo-2.8.14.tgz",
"integrity": "sha512-IwhX7C5RaCtu645mq8zDrfrJQxchs6a0IwI+YoKKa96g0JgNFrGQY9B2OxeZZx4uZtxb8BA+dR1+O5+XdG3APw==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-removeformat": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-removeformat/-/plugin-removeformat-2.8.14.tgz",
"integrity": "sha512-Hot1Twmuvwdf77sJmApKmE1OQ5A4WVY75Kx8vUr4/6oy5ZUYRDzFfMqCGYPIJ1otuqeIUa4SMzBNb1JUe/fyjQ==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-selectall": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-selectall/-/plugin-selectall-2.8.14.tgz",
"integrity": "sha512-ChtE4MXZPOxRCWByLupB1Gcimsrse4A0syDnVeBJTYvgNm03ntyV/wXhTQV5CDmDfL4WZhbUPteD67YsXhKA4g==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-status": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-status/-/plugin-status-2.8.14.tgz",
"integrity": "sha512-z9QOc5rVAUfOhaI3ZKu1LqoFs/V0PvOEewxOK/U2Llv220lVrQPCIJhuV4cbONcABFtLO3IMfIBuCu09JPocnQ==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-strikethrough": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-strikethrough/-/plugin-strikethrough-2.8.14.tgz",
"integrity": "sha512-7VNdUWSDkJd+BAfnAy2GSCb3c/IX1z4UoC7k2ndN5UdBCYhi4ueIccXUOvXEP+s5SCzWmDQmpXlzDXlHSE1Oug==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-sub": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-sub/-/plugin-sub-2.8.14.tgz",
"integrity": "sha512-hGbaS7BosJj2n3iClUF9uTruvTfP6ZXo9X1wANyoX/NMXuNgwRYx+CqE4OGxuvNHms44Qlx1IybOiOg8fg/TfA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-sup": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-sup/-/plugin-sup-2.8.14.tgz",
"integrity": "sha512-HSqR5lSJR04tXUTFOvOHP06Tv1tjgGX/kj9Sl3F3p5vAZ1F/moFVKMgWW2v9NUmB9yyH2XYvKWn/9cjdE1UT5Q==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-table": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-table/-/plugin-table-2.8.14.tgz",
"integrity": "sha512-hRQ2Fy9Zm0gB47d7jyxGAtbTYvbCmAkiaiME241QwAY+lF+sK7ZCj3+RDEf87rsbiXHiu+wffdFRqvCDV+IcnQ==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10",
"eventemitter2": "^6.4.4",
"lodash": "^4.17.21",
"tinycolor2": "^1.4.2"
}
},
"@aomao/plugin-tasklist": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-tasklist/-/plugin-tasklist-2.8.14.tgz",
"integrity": "sha512-KiEoTwut6RZe2C5Uv51x/4hhgRn1swI476bX/jncStC8t6ZNG3na+3gRZAEzTkkloNvOp/EJPzUW7LM3ua97mQ==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-underline": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-underline/-/plugin-underline-2.8.14.tgz",
"integrity": "sha512-o052rpvrROXmlIeh93AwqOWT6zOLYc5RhAwa0eazdpZu2qESc5mUmmAwb6iI4oa4yrb/6SI0tzCdzNzL56bhVA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-undo": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-undo/-/plugin-undo-2.8.14.tgz",
"integrity": "sha512-oOJwofrfb0vddQvp4rZL/S3q1l2s1VxKmEYEWo8LI6cl/xJddAtRn5RvP/qxbkBtCnoFugeXIwf6ag1jqKNMMA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-unorderedlist": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@aomao/plugin-unorderedlist/-/plugin-unorderedlist-2.8.14.tgz",
"integrity": "sha512-epYtLlFFLkiqUU8S7u9+T1qBGi4cJ7iVYckJDQ/aB+bQgZS1FUZYZPXXGwhxZLqGSf0F7pHGLf0NC5ij7Ex1WQ==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/plugin-video": {
"version": "2.8.15",
"resolved": "https://registry.npmjs.org/@aomao/plugin-video/-/plugin-video-2.8.15.tgz",
"integrity": "sha512-c1b+x81efL1FzXSAbWa61fpU/tY9JAYK3cEH01xyB2Q92jLr1TwYvVJ5miCCf/aOemKdHcEJup1UFpuvdgbCdw==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10"
}
},
"@aomao/toolbar": {
"version": "2.8.15",
"resolved": "https://registry.npmjs.org/@aomao/toolbar/-/toolbar-2.8.15.tgz",
"integrity": "sha512-T7zCqML99kLynw7SFw23Vj1UeTlK8wGt9XZS4orA4WByW0bNdcEPhdN+cbfecXZsnUyUoj8YiEAk8OGyFM7BkA==",
"requires": {
"@aomao/engine": "^2.8.14",
"@babel/runtime": "^7.13.10",
"antd": "^4.12.3",
"classnames-es-ts": "^2.2.7",
"keymaster": "^1.6.2",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tinycolor2": "^1.4.2"
}
},
"@babel/code-frame": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
"integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
"dev": true,
"requires": {
"@babel/highlight": "^7.16.7"
}
},
"@babel/helper-validator-identifier": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
"integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==",
"dev": true
},
"@babel/highlight": {
"version": "7.16.10",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz",
"integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.16.7",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/runtime": {
"version": "7.17.8",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz",
"integrity": "sha512-dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@commitlint/config-validator": {
"version": "16.2.1",
"resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-16.2.1.tgz",
"integrity": "sha512-hogSe0WGg7CKmp4IfNbdNES3Rq3UEI4XRPB8JL4EPgo/ORq5nrGTVzxJh78omibNuB8Ho4501Czb1Er1MoDWpw==",
"dev": true,
"optional": true,
"requires": {
"@commitlint/types": "^16.2.1",
"ajv": "^6.12.6"
}
},
"@commitlint/execute-rule": {
"version": "16.2.1",
"resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-16.2.1.tgz",
"integrity": "sha512-oSls82fmUTLM6cl5V3epdVo4gHhbmBFvCvQGHBRdQ50H/690Uq1Dyd7hXMuKITCIdcnr9umyDkr8r5C6HZDF3g==",
"dev": true,
"optional": true
},
"@commitlint/load": {
"version": "16.2.3",
"resolved": "https://registry.npmjs.org/@commitlint/load/-/load-16.2.3.tgz",
"integrity": "sha512-Hb4OUlMnBUK6UxJEZ/VJ5k0LocIS7PtEMbRXEAA7eSpOgORIFexC4K/RaRpVd5UTtu3M0ST3ddPPijF9rdW6nw==",
"dev": true,
"optional": true,
"requires": {
"@commitlint/config-validator": "^16.2.1",
"@commitlint/execute-rule": "^16.2.1",
"@commitlint/resolve-extends": "^16.2.1",
"@commitlint/types": "^16.2.1",
"@types/node": ">=12",
"chalk": "^4.0.0",
"cosmiconfig": "^7.0.0",
"cosmiconfig-typescript-loader": "^1.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"typescript": "^4.4.3"
},
"dependencies": {
"chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"optional": true,
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
}
},
"supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"optional": true,
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"@commitlint/resolve-extends": {
"version": "16.2.1",
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-16.2.1.tgz",
"integrity": "sha512-NbbCMPKTFf2J805kwfP9EO+vV+XvnaHRcBy6ud5dF35dxMsvdJqke54W3XazXF1ZAxC4a3LBy4i/GNVBAthsEg==",
"dev": true,
"optional": true,
"requires": {
"@commitlint/config-validator": "^16.2.1",
"@commitlint/types": "^16.2.1",
"import-fresh": "^3.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"resolve-global": "^1.0.0"
}
},
"@commitlint/types": {
"version": "16.2.1",
"resolved": "https://registry.npmjs.org/@commitlint/types/-/types-16.2.1.tgz",
"integrity": "sha512-7/z7pA7BM0i8XvMSBynO7xsB3mVQPUZbVn6zMIlp/a091XJ3qAXRXc+HwLYhiIdzzS5fuxxNIHZMGHVD4HJxdA==",
"dev": true,
"optional": true,
"requires": {
"chalk": "^4.0.0"
},
"dependencies": {
"chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"optional": true,
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
}
},
"supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"optional": true,
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"@cspotcode/source-map-consumer": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz",
"integrity": "sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==",
"dev": true,
"optional": true
},
"@cspotcode/source-map-support": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz",
"integrity": "sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==",
"dev": true,
"optional": true,
"requires": {
"@cspotcode/source-map-consumer": "0.8.0"
}
},
"@ctrl/tinycolor": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz",
"integrity": "sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ=="
},
"@discoveryjs/json-ext": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz",
"integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==",
"dev": true
},
"@hutson/parse-repository-url": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz",
"integrity": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==",
"dev": true
},
"@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"requires": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
}
},
"@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true
},
"@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"requires": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
}
},
"@pmmmwh/react-refresh-webpack-plugin": {
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.5.tgz",
"integrity": "sha512-RbG7h6TuP6nFFYKJwbcToA1rjC1FyPg25NR2noAZ0vKI+la01KTSRPkuVPE+U88jXv7javx2JHglUcL1MHcshQ==",
"requires": {
"ansi-html-community": "^0.0.8",
"common-path-prefix": "^3.0.0",
"core-js-pure": "^3.8.1",
"error-stack-parser": "^2.0.6",
"find-up": "^5.0.0",
"html-entities": "^2.1.0",
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0",
"source-map": "^0.7.3"
}
},
"@polka/url": {
"version": "1.0.0-next.21",
"resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz",
"integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==",
"dev": true
},
"@sindresorhus/is": {
"version": "0.14.0",
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
"integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==",
"dev": true
},
"@szmarczak/http-timer": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
"integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
"dev": true,
"requires": {
"defer-to-connect": "^1.0.1"
}
},
"@trysound/sax": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
"integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
"dev": true
},
"@tsconfig/node10": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz",
"integrity": "sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==",
"dev": true,
"optional": true
},
"@tsconfig/node12": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.9.tgz",
"integrity": "sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==",
"dev": true,
"optional": true
},
"@tsconfig/node14": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz",
"integrity": "sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==",
"dev": true,
"optional": true
},
"@tsconfig/node16": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.2.tgz",
"integrity": "sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==",
"dev": true,
"optional": true
},
"@types/component-emitter": {
"version": "1.2.11",
"resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz",
"integrity": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ=="
},
"@types/cookie": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz",
"integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q=="
},
"@types/cors": {
"version": "2.8.12",
"resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz",
"integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="
},
"@types/eslint": {
"version": "8.4.1",
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.1.tgz",
"integrity": "sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==",
"dev": true,
"requires": {
"@types/estree": "*",
"@types/json-schema": "*"
}
},
"@types/eslint-scope": {
"version": "3.7.3",
"resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz",
"integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==",
"dev": true,
"requires": {
"@types/eslint": "*",
"@types/estree": "*"
}
},
"@types/estree": {
"version": "0.0.47",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz",
"integrity": "sha512-c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==",
"dev": true
},
"@types/formidable": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/@types/formidable/-/formidable-1.2.5.tgz",
"integrity": "sha512-zu3mQJa4hDNubEMViSj937602XdDGzK7Q5pJ5QmLUbNxclbo9tZGt5jtwM352ssZ+pqo5V4H14TBvT/ALqQQcA==",
"requires": {
"@types/node": "*"
}
},
"@types/history": {
"version": "4.7.11",
"resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz",
"integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA=="
},
"@types/html-minifier-terser": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz",
"integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==",
"dev": true
},
"@types/http-proxy": {
"version": "1.17.8",
"resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.8.tgz",
"integrity": "sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA==",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@types/json-schema": {
"version": "7.0.11",
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
"integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="
},
"@types/minimist": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz",
"integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==",
"dev": true
},
"@types/node": {
"version": "14.14.32",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.32.tgz",
"integrity": "sha512-/Ctrftx/zp4m8JOujM5ZhwzlWLx22nbQJiVqz8/zE15gOeEW+uly3FSX4fGFpcfEvFzXcMCJwq9lGVWgyARXhg=="
},
"@types/node-cron": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@types/node-cron/-/node-cron-2.0.5.tgz",
"integrity": "sha512-rQ4kduTmgW11tbtx0/RsoybYHHPu4Vxw5v5ZS5qUKNerlEAI8r8P1F5UUZ2o2HTvzG759sbFxuRuqWxU8zc+EQ==",
"requires": {
"@types/tz-offset": "*"
}
},
"@types/normalize-package-data": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz",
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
"dev": true
},
"@types/parse-json": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==",
"dev": true,
"optional": true
},
"@types/prop-types": {
"version": "15.7.4",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz",
"integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="
},
"@types/puppeteer": {
"version": "5.4.3",
"resolved": "https://registry.npmjs.org/@types/puppeteer/-/puppeteer-5.4.3.tgz",
"integrity": "sha512-3nE8YgR9DIsgttLW+eJf6mnXxq8Ge+27m5SU3knWmrlfl6+KOG0Bf9f7Ua7K+C4BnaTMAh3/UpySqdAYvrsvjg==",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@types/react": {
"version": "17.0.43",
"resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.43.tgz",
"integrity": "sha512-8Q+LNpdxf057brvPu1lMtC5Vn7J119xrP1aq4qiaefNioQUYANF/CYeK4NsKorSZyUGJ66g0IM+4bbjwx45o2A==",
"requires": {
"@types/prop-types": "*",
"@types/scheduler": "*",
"csstype": "^3.0.2"
}
},
"@types/react-dom": {
"version": "17.0.14",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.14.tgz",
"integrity": "sha512-H03xwEP1oXmSfl3iobtmQ/2dHF5aBHr8aUMwyGZya6OW45G+xtdzmq6HkncefiBt5JU8DVyaWl/nWZbjZCnzAQ==",
"requires": {
"@types/react": "*"
}
},
"@types/react-router": {
"version": "5.1.18",
"resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.18.tgz",
"integrity": "sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==",
"requires": {
"@types/history": "^4.7.11",
"@types/react": "*"
}
},
"@types/react-router-dom": {
"version": "5.3.3",
"resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz",
"integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==",
"requires": {
"@types/history": "^4.7.11",
"@types/react": "*",
"@types/react-router": "*"
}
},
"@types/retry": {
"version": "0.12.1",
"resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz",
"integrity": "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==",
"dev": true
},
"@types/scheduler": {
"version": "0.16.2",
"resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
"integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
},
"@types/tz-offset": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/@types/tz-offset/-/tz-offset-0.0.0.tgz",
"integrity": "sha512-XLD/llTSB6EBe3thkN+/I0L+yCTB6sjrcVovQdx2Cnl6N6bTzHmwe/J8mWnsXFgxLrj/emzdv8IR4evKYG2qxQ=="
},
"@types/uuid": {
"version": "8.3.4",
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz",
"integrity": "sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw=="
},
"@webassemblyjs/ast": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz",
"integrity": "sha512-kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg==",
"dev": true,
"requires": {
"@webassemblyjs/helper-numbers": "1.11.0",
"@webassemblyjs/helper-wasm-bytecode": "1.11.0"
}
},
"@webassemblyjs/floating-point-hex-parser": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz",
"integrity": "sha512-Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA==",
"dev": true
},
"@webassemblyjs/helper-api-error": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz",
"integrity": "sha512-baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w==",
"dev": true
},
"@webassemblyjs/helper-buffer": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz",
"integrity": "sha512-u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA==",
"dev": true
},
"@webassemblyjs/helper-numbers": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz",
"integrity": "sha512-DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ==",
"dev": true,
"requires": {
"@webassemblyjs/floating-point-hex-parser": "1.11.0",
"@webassemblyjs/helper-api-error": "1.11.0",
"@xtuc/long": "4.2.2"
}
},
"@webassemblyjs/helper-wasm-bytecode": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz",
"integrity": "sha512-MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA==",
"dev": true
},
"@webassemblyjs/helper-wasm-section": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz",
"integrity": "sha512-3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.11.0",
"@webassemblyjs/helper-buffer": "1.11.0",
"@webassemblyjs/helper-wasm-bytecode": "1.11.0",
"@webassemblyjs/wasm-gen": "1.11.0"
}
},
"@webassemblyjs/ieee754": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz",
"integrity": "sha512-KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA==",
"dev": true,
"requires": {
"@xtuc/ieee754": "^1.2.0"
}
},
"@webassemblyjs/leb128": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.0.tgz",
"integrity": "sha512-aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g==",
"dev": true,
"requires": {
"@xtuc/long": "4.2.2"
}
},
"@webassemblyjs/utf8": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.0.tgz",
"integrity": "sha512-A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw==",
"dev": true
},
"@webassemblyjs/wasm-edit": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz",
"integrity": "sha512-JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.11.0",
"@webassemblyjs/helper-buffer": "1.11.0",
"@webassemblyjs/helper-wasm-bytecode": "1.11.0",
"@webassemblyjs/helper-wasm-section": "1.11.0",
"@webassemblyjs/wasm-gen": "1.11.0",
"@webassemblyjs/wasm-opt": "1.11.0",
"@webassemblyjs/wasm-parser": "1.11.0",
"@webassemblyjs/wast-printer": "1.11.0"
}
},
"@webassemblyjs/wasm-gen": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz",
"integrity": "sha512-BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.11.0",
"@webassemblyjs/helper-wasm-bytecode": "1.11.0",
"@webassemblyjs/ieee754": "1.11.0",
"@webassemblyjs/leb128": "1.11.0",
"@webassemblyjs/utf8": "1.11.0"
}
},
"@webassemblyjs/wasm-opt": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz",
"integrity": "sha512-tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.11.0",
"@webassemblyjs/helper-buffer": "1.11.0",
"@webassemblyjs/wasm-gen": "1.11.0",
"@webassemblyjs/wasm-parser": "1.11.0"
}
},
"@webassemblyjs/wasm-parser": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz",
"integrity": "sha512-6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.11.0",
"@webassemblyjs/helper-api-error": "1.11.0",
"@webassemblyjs/helper-wasm-bytecode": "1.11.0",
"@webassemblyjs/ieee754": "1.11.0",
"@webassemblyjs/leb128": "1.11.0",
"@webassemblyjs/utf8": "1.11.0"
}
},
"@webassemblyjs/wast-printer": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz",
"integrity": "sha512-Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.11.0",
"@xtuc/long": "4.2.2"
}
},
"@webpack-cli/configtest": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz",
"integrity": "sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==",