-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
3939 lines (3939 loc) · 165 KB
/
package-lock.json
File metadata and controls
3939 lines (3939 loc) · 165 KB
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": "server",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ckeditor/ckeditor5-adapter-ckfinder": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-34.2.0.tgz",
"integrity": "sha512-KsEYApU2VCmUsF2Np5VD657dzrvMZTBUgbPAjedghmFvPidpbuhj/fyvdbafbbHMaBhF9uXFTucXqnR7wq4bRw==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-autoformat": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-34.2.0.tgz",
"integrity": "sha512-751X2LplWs690MoNA97oXNEk/ZKWgO/iDXFM0peD2dN7X51pSG6Ats6WYAxrkVltCZB60ZbpQ7XEeCrbhxmrlw==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-basic-styles": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-34.2.0.tgz",
"integrity": "sha512-tnfs5K17cY25DrAuFg6owJQYtZ/+cC9er7KfswL5DVWLZSkHHYnt3Yhx6zhhws4mnQf4ETxG9WKWq5JqXu/5lA==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-block-quote": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-34.2.0.tgz",
"integrity": "sha512-W6ht+2eO/qV4lwEwV7tEWvNxXfj1HIia7GrSjT2z2gyUYLwhjZQDIc1x4ds6517znBgMfLiDU1tH3JzqBaFQqw==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-build-classic": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-build-classic/-/ckeditor5-build-classic-34.2.0.tgz",
"integrity": "sha512-nXpZWEkHPX0VgFaf1tk4EwcrvPD6MF7ZvRQDm9WdOp8LvMX/pRqvJFbXxKkqPEB4ROrpDKZ0NEs+IdkhiY92zg==",
"requires": {
"@ckeditor/ckeditor5-adapter-ckfinder": "^34.2.0",
"@ckeditor/ckeditor5-autoformat": "^34.2.0",
"@ckeditor/ckeditor5-basic-styles": "^34.2.0",
"@ckeditor/ckeditor5-block-quote": "^34.2.0",
"@ckeditor/ckeditor5-ckbox": "^34.2.0",
"@ckeditor/ckeditor5-ckfinder": "^34.2.0",
"@ckeditor/ckeditor5-cloud-services": "^34.2.0",
"@ckeditor/ckeditor5-easy-image": "^34.2.0",
"@ckeditor/ckeditor5-editor-classic": "^34.2.0",
"@ckeditor/ckeditor5-essentials": "^34.2.0",
"@ckeditor/ckeditor5-heading": "^34.2.0",
"@ckeditor/ckeditor5-image": "^34.2.0",
"@ckeditor/ckeditor5-indent": "^34.2.0",
"@ckeditor/ckeditor5-link": "^34.2.0",
"@ckeditor/ckeditor5-list": "^34.2.0",
"@ckeditor/ckeditor5-media-embed": "^34.2.0",
"@ckeditor/ckeditor5-paragraph": "^34.2.0",
"@ckeditor/ckeditor5-paste-from-office": "^34.2.0",
"@ckeditor/ckeditor5-table": "^34.2.0",
"@ckeditor/ckeditor5-typing": "^34.2.0"
}
},
"@ckeditor/ckeditor5-ckbox": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-34.2.0.tgz",
"integrity": "sha512-vjD/i5ya4KbjltjkHVXlNPMo6Gsgm/1Xg6ENdW3SGLmJm9So5M4QqhQZQPEPNISNd5Pu5OVyHmX/F0G/rFUqOA==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-ckfinder": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-34.2.0.tgz",
"integrity": "sha512-zZfCxjcw+mJGGZaZAgmU8a1iwOsov2T/flT6AxZPVVyTXQlaAN4reQ3MH2K45E/2kSc04QNSfH7iSHubxtfFVA==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-clipboard": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-34.2.0.tgz",
"integrity": "sha512-OcdFj9yT7C5yKPHtTKWvjGMJLpigrkdJN4AZhdJJPigiuYG0c5mnCuTvOYxp2kVijFWRjhPlwIyPVTtDZ0vnzw==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-engine": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0",
"@ckeditor/ckeditor5-widget": "^34.2.0",
"lodash-es": "^4.17.11"
}
},
"@ckeditor/ckeditor5-cloud-services": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-34.2.0.tgz",
"integrity": "sha512-4ePDTu9TKgQk1duby7Sp8kGct9TzWlZWnE/1IoG6sDUUUF3iVydrc7GlKC5hkB3BsnBChQS24kj8iUrrFFcGnw==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-core": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-34.2.0.tgz",
"integrity": "sha512-6K0aToibRt28sCVYpMqdSKGvMifjwziqxLxyEh38CyDZJBUf7QPEAPlEpKAFTisHNEmC4471tr8UPpvNgqUXGA==",
"requires": {
"@ckeditor/ckeditor5-engine": "^34.2.0",
"@ckeditor/ckeditor5-ui": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-easy-image": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-34.2.0.tgz",
"integrity": "sha512-0enLOsyy8cYAb85BA+TxZqg2sDWrup62Ph31dv97EBry0+XjvD5ViEhgpr15WoY/4B3HZZbxy4W+/zJz3GmO5w==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-editor-classic": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-34.2.0.tgz",
"integrity": "sha512-/iNJixrnmiZOyLb85TkGeWsPMXeKpdsAIa7KX92AxIYhW08UpgFS+X7Cp17nZ7FBNM4nmFarUz7WbGvR0n51ew==",
"requires": {
"ckeditor5": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-engine": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-34.2.0.tgz",
"integrity": "sha512-9/i6TZ+Sy5T6hnuCtmeLTfwLSY8LaS7qFkW6gsM9NEB+LSSu930GP0Ss30Nw6dYo/JmYiQEpkiRJzKYIjrH8Pg==",
"requires": {
"@ckeditor/ckeditor5-utils": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-enter": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-34.2.0.tgz",
"integrity": "sha512-QxaT3jH0qsZaE0Egj1D19o6YBz/EJKs0am5ny5hDnd5sntvIUk9PNGEu/v3mRmNqZqrhRu4BuedvdRzYWseUjw==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-engine": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0"
}
},
"@ckeditor/ckeditor5-essentials": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-34.2.0.tgz",
"integrity": "sha512-1FID6r3CknWPdQQavT5U+OQ9+GwQQNI6hJNhWCfPxtvYhtR/SQp/MV+Lsn2e5Kt9VkCQkN7HdeYp5vumT84BZw==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-heading": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-34.2.0.tgz",
"integrity": "sha512-I/0H06LvksVPW99g2uGb6vQUX/T7o9DAUF1dMcCC5SgSXsqDmO3pdC50uKwSeLaqUxUhVFF0mjBo0inQZVX9fQ==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-image": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-34.2.0.tgz",
"integrity": "sha512-JY6uETyhIFjOk4kky6HrpNg8JFYVz0mU654qZ7o+a5J+L55cOIC8JDMA8VUa5Opn2XDwZb4Q91ArX1hIJSGRQA==",
"requires": {
"@ckeditor/ckeditor5-ui": "^34.2.0",
"ckeditor5": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-indent": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-34.2.0.tgz",
"integrity": "sha512-6yGuUI06C6bTpNXvUXh5/AbmYoV0FvUW23wIsarml2SgdBi/NCFDHCJsFcJn33uRQgEuZHaO2ORhOe6yQfBBFQ==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-link": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-34.2.0.tgz",
"integrity": "sha512-rqw2Pu3NY2VTE6hpeLoOnH2FOMRZLZgo2biWVitHR9upzv1x50PngJujoaWerTB4dHbWz+W2M1uc+UZADm/P1A==",
"requires": {
"@ckeditor/ckeditor5-ui": "^34.2.0",
"ckeditor5": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-list": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-34.2.0.tgz",
"integrity": "sha512-mP/XlvFDDQL4PDKOZuFWPHtRikSPbx6vARh/2INTsa41AURN35O86hESTwMhz+ZqmTe4av1KRPZYtVhgS3xGeA==",
"requires": {
"@ckeditor/ckeditor5-ui": "^34.2.0",
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-media-embed": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-34.2.0.tgz",
"integrity": "sha512-XQxTAwtZ0Fe6eph+5equH8DGtcHMj6ktJ54g/aQKyC4UxHb5JFSQ8y9Ud0IQfH12lT1uyagDOnC8rY2AUKGBGA==",
"requires": {
"@ckeditor/ckeditor5-ui": "^34.2.0",
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-paragraph": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-34.2.0.tgz",
"integrity": "sha512-xcXUsXz3PY355gJ8u+y0qFLWcScYo0CZPZSbs5YwDz7g9lV8foVVzzdW7ITYwr5/YIpJsjjxYC+dDUqsH6EpBQ==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-ui": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0"
}
},
"@ckeditor/ckeditor5-paste-from-office": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-34.2.0.tgz",
"integrity": "sha512-NT3NYBeQqibswfj5w1WjvaXFk1XPMjiJZQKR8qoi5o5jH7bwmhlnsZM7cZdYgZHS8rX6JSLAtD6A1XRD3deRfQ==",
"requires": {
"ckeditor5": "^34.2.0"
}
},
"@ckeditor/ckeditor5-react": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-react/-/ckeditor5-react-5.0.2.tgz",
"integrity": "sha512-pN4acvCAIsuXaZDMttqy4dNBKXiJ6AS6P8NM3ggMc/rQkMIPp3YPhDWWf+pyQLUiewj1Bfr5EFeBfcXPQTOn+Q==",
"requires": {
"prop-types": "^15.7.2"
}
},
"@ckeditor/ckeditor5-select-all": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-34.2.0.tgz",
"integrity": "sha512-/Va85RwNlmpgQ7vWxiAFLyzXhXrWiA5Pde7yCNcc6hJpqnaGcqvscOJoZLMk5oASTvMnPhQIgNSMDN/oq6ej0Q==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-ui": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0"
}
},
"@ckeditor/ckeditor5-table": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-34.2.0.tgz",
"integrity": "sha512-ALJAldO7x+gvY7AeOg7j9PuG0ftQekkPTN3QvLHMqDFBfeRh76fK7xPGz+A42DeSFGIcMQ8IS9jpiT4PRKC7cw==",
"requires": {
"ckeditor5": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-typing": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-34.2.0.tgz",
"integrity": "sha512-Eq8mhb8M7RwUmeVUantN+PrqxDELXCvLCcpixy+ge/5lM8wxVcn/SonfUL9PLqs2eluRc4Bx+mstMQySglkVkw==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-engine": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-ui": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-34.2.0.tgz",
"integrity": "sha512-XL561G/e3b1YLGHNjLxS9IgoVn4BSugHmidEXYNUTMLATRCKld1XMUKFsB/wm3DwLBUfWn4d2j3qdcO2CnDuBg==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-undo": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-34.2.0.tgz",
"integrity": "sha512-WW3f6ku36DpKhUxXACfNFm2DaKcJ2Rz0EFEkol0+offpOjltJnUEJ7LvfOthGdMvGz+5lmnySTbkvOvNruq1Ew==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-engine": "^34.2.0",
"@ckeditor/ckeditor5-ui": "^34.2.0"
}
},
"@ckeditor/ckeditor5-upload": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-34.2.0.tgz",
"integrity": "sha512-HBJr0/wFE+R13aIXRF/xJVQqo6Yh34EgbnrNYYhlNiHG40Vr6079eCuoZrnY3vwEsjtFNnTRQ433+RqxJ652zw==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-ui": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0"
}
},
"@ckeditor/ckeditor5-utils": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-34.2.0.tgz",
"integrity": "sha512-jHJV2S8DzmpVvd3jdercY6HsGRAwpm/MK79Rs/Mrc3NNYKzN9SVFs/NLbrELNoMZeJ1WKt5BwKgBY+PEOpfyLw==",
"requires": {
"lodash-es": "^4.17.15"
}
},
"@ckeditor/ckeditor5-widget": {
"version": "34.2.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-34.2.0.tgz",
"integrity": "sha512-h2iF/RRK+GjvVHb6VY7+slnIV+IdWdLfZS83OECQNYp2e+6kN/JZp+PxiyYC4asPTraL43zJGzlgT53Jof77vw==",
"requires": {
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-engine": "^34.2.0",
"@ckeditor/ckeditor5-enter": "^34.2.0",
"@ckeditor/ckeditor5-typing": "^34.2.0",
"@ckeditor/ckeditor5-ui": "^34.2.0",
"@ckeditor/ckeditor5-utils": "^34.2.0",
"lodash-es": "^4.17.15"
}
},
"@sindresorhus/is": {
"version": "0.14.0",
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
"integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
},
"@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==",
"requires": {
"defer-to-connect": "^1.0.1"
}
},
"@toast-ui/editor": {
"version": "3.1.8",
"resolved": "https://registry.npmjs.org/@toast-ui/editor/-/editor-3.1.8.tgz",
"integrity": "sha512-2IIHQnaxPZsCySvYAjgSlQWEQZGCakMl6S6mkKm+oWFMVyCBhLd1DMrooj7xI8kJEEZLTGsVj5OGvlHY1LboNg==",
"requires": {
"dompurify": "^2.3.3",
"prosemirror-commands": "^1.1.9",
"prosemirror-history": "^1.1.3",
"prosemirror-inputrules": "^1.1.3",
"prosemirror-keymap": "^1.1.4",
"prosemirror-model": "^1.14.1",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.18.7"
}
},
"@toast-ui/react-editor": {
"version": "3.1.8",
"resolved": "https://registry.npmjs.org/@toast-ui/react-editor/-/react-editor-3.1.8.tgz",
"integrity": "sha512-u8M3aqAoCEErIcwyC9hUxPU+SLAEHLJowfjgLHJnksyel1T/GKvo8cB5a5juz0nvise1dmYnLYlldTSUK1eBbQ==",
"requires": {
"@toast-ui/editor": "^3.1.8"
}
},
"@tootallnate/once": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
"optional": true
},
"@types/ckeditor__ckeditor5-adapter-ckfinder": {
"version": "29.0.4",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-adapter-ckfinder/-/ckeditor__ckeditor5-adapter-ckfinder-29.0.4.tgz",
"integrity": "sha512-baT+KeQG12qfu0iDu+TIy1BSM/OWzzvH8pTkSIckQhRwEt2mlW8jFNQMZGRi4kAmLabMoLvybiAn1yFDeepddw==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-upload": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-alignment": {
"version": "29.0.7",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-alignment/-/ckeditor__ckeditor5-alignment-29.0.7.tgz",
"integrity": "sha512-tZIF0svmHOHIvbnFM074b2CySBKKQxxZG5Y41UFAvkIYxel4LTZmFV3uTbdDTmniLRIbG219vOXtWHOJ5INB/A==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-autoformat": {
"version": "31.0.1",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-autoformat/-/ckeditor__ckeditor5-autoformat-31.0.1.tgz",
"integrity": "sha512-E2bDInIyq6J5slWDAruCRTCvWxCH1Gm91d70/V2+YKiwpzj0X0EXyIPTqO01xTbdjHbCy9XiGIZ7fVLDrzchNQ==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-typing": "*"
}
},
"@types/ckeditor__ckeditor5-autosave": {
"version": "32.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-autosave/-/ckeditor__ckeditor5-autosave-32.0.0.tgz",
"integrity": "sha512-auGeVgBG4HLXwPTbHQSsfGZcItntaBuBQN8LSreZea0ur4SJ6NKfh25USqIIQs1DUWYMDPiK6ODwSn2mhyfJ2A==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*"
}
},
"@types/ckeditor__ckeditor5-basic-styles": {
"version": "28.0.2",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-basic-styles/-/ckeditor__ckeditor5-basic-styles-28.0.2.tgz",
"integrity": "sha512-ap6vMacs5rjcWRlHrYPsZPshHoPR7sruPgbuzduGQCy7X86SglOPwtd6XvMOMItslbLv1wYbJ3h9+S1kBOVvfA==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-typing": "*"
}
},
"@types/ckeditor__ckeditor5-block-quote": {
"version": "29.0.4",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-block-quote/-/ckeditor__ckeditor5-block-quote-29.0.4.tgz",
"integrity": "sha512-FwNayTN7/8hdxCSA9cBiab4rEG3jERy+bF6qgr5pYwCiEthghlKT87IYqFYmVhznSsfqqR3KHi2a6GIfJMHpCA==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-enter": "*",
"@types/ckeditor__ckeditor5-typing": "*"
}
},
"@types/ckeditor__ckeditor5-build-classic": {
"version": "29.0.1",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-build-classic/-/ckeditor__ckeditor5-build-classic-29.0.1.tgz",
"integrity": "sha512-liWJN2v9xSJSLuU048nO7i7dr49T4REWhqSe7D7qcGcY3M5n7bVZnSNUnmBCB61WJg5iBl+KfwfdpDIDYp7+XQ==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-adapter-ckfinder": "*",
"@types/ckeditor__ckeditor5-autoformat": "*",
"@types/ckeditor__ckeditor5-basic-styles": "*",
"@types/ckeditor__ckeditor5-block-quote": "*",
"@types/ckeditor__ckeditor5-ckfinder": "*",
"@types/ckeditor__ckeditor5-cloud-services": "*",
"@types/ckeditor__ckeditor5-easy-image": "*",
"@types/ckeditor__ckeditor5-editor-classic": "*",
"@types/ckeditor__ckeditor5-essentials": "*",
"@types/ckeditor__ckeditor5-heading": "*",
"@types/ckeditor__ckeditor5-image": "*",
"@types/ckeditor__ckeditor5-indent": "*",
"@types/ckeditor__ckeditor5-link": "*",
"@types/ckeditor__ckeditor5-list": "*",
"@types/ckeditor__ckeditor5-media-embed": "*",
"@types/ckeditor__ckeditor5-paragraph": "*",
"@types/ckeditor__ckeditor5-paste-from-office": "*",
"@types/ckeditor__ckeditor5-table": "*",
"@types/ckeditor__ckeditor5-typing": "*"
}
},
"@types/ckeditor__ckeditor5-ckfinder": {
"version": "29.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-ckfinder/-/ckeditor__ckeditor5-ckfinder-29.0.3.tgz",
"integrity": "sha512-RQVFIg/RrJzaA19FHD9Qzzl36sVUyyqY9ozWhEUWAmlKMUZW0MQBBtMN3vX5dZ81JtOaPVcwklNAa2yw6dqlkg==",
"requires": {
"@types/ckeditor__ckeditor5-adapter-ckfinder": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-link": "*",
"@types/ckeditor__ckeditor5-ui": "*"
}
},
"@types/ckeditor__ckeditor5-clipboard": {
"version": "29.0.5",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-clipboard/-/ckeditor__ckeditor5-clipboard-29.0.5.tgz",
"integrity": "sha512-AN7iniYu2C417LRNuOBIirBokStvPwXm/NG72o9Ivfn0/i7J0VZiJ8KGp7Wmvrcg/bhFYfZsTbEOVW2c/59Rjg==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-widget": "*"
}
},
"@types/ckeditor__ckeditor5-cloud-services": {
"version": "29.0.4",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-cloud-services/-/ckeditor__ckeditor5-cloud-services-29.0.4.tgz",
"integrity": "sha512-fZOj+HBQbGFJg3SwUYqfdIQtFNnG2U2OCWkKDCIzUuejkdSeicF8P5GLSyNuDP0nTDdQMBqEWgzljqLZkJnkHg==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-code-block": {
"version": "29.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-code-block/-/ckeditor__ckeditor5-code-block-29.0.3.tgz",
"integrity": "sha512-x3D3B8I21za6VShc3twNRzKBN4+1+pOrsXhb+TPgQLG2Q9oeRgPXhaHMhdXGAGebMWhdFlPs0lTNsQTCVjXm6A==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-enter": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-collaboration-core": {
"version": "27.1.2",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-collaboration-core/-/ckeditor__ckeditor5-collaboration-core-27.1.2.tgz",
"integrity": "sha512-g0AKoJw820i/Biho6S9qYH1SaedjXr2P/gmnqO3k8/6HWiIMALaGDUkMgYvQC5nr+ZXIzLtv04Y0eb/9H1W3DQ==",
"requires": {
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-core": {
"version": "33.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-core/-/ckeditor__ckeditor5-core-33.0.3.tgz",
"integrity": "sha512-mVaU5+faOZ/2eR2jZb26H0JLqHLV/4a/p1/t7K9l8j5fMWTcubE5FRifjCk/TowazNW+/xcgRinyFnnUtNFUTQ==",
"requires": {
"@types/ckeditor__ckeditor5-alignment": "*",
"@types/ckeditor__ckeditor5-autosave": "*",
"@types/ckeditor__ckeditor5-ckfinder": "*",
"@types/ckeditor__ckeditor5-cloud-services": "*",
"@types/ckeditor__ckeditor5-code-block": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-export-pdf": "*",
"@types/ckeditor__ckeditor5-export-word": "*",
"@types/ckeditor__ckeditor5-font": "*",
"@types/ckeditor__ckeditor5-heading": "*",
"@types/ckeditor__ckeditor5-highlight": "*",
"@types/ckeditor__ckeditor5-image": "*",
"@types/ckeditor__ckeditor5-indent": "*",
"@types/ckeditor__ckeditor5-language": "*",
"@types/ckeditor__ckeditor5-link": "*",
"@types/ckeditor__ckeditor5-media-embed": "*",
"@types/ckeditor__ckeditor5-mention": "*",
"@types/ckeditor__ckeditor5-minimap": "*",
"@types/ckeditor__ckeditor5-pagination": "*",
"@types/ckeditor__ckeditor5-real-time-collaboration": "*",
"@types/ckeditor__ckeditor5-restricted-editing": "*",
"@types/ckeditor__ckeditor5-table": "*",
"@types/ckeditor__ckeditor5-track-changes": "*",
"@types/ckeditor__ckeditor5-typing": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-upload": "*",
"@types/ckeditor__ckeditor5-utils": "*",
"@types/ckeditor__ckeditor5-word-count": "*"
}
},
"@types/ckeditor__ckeditor5-easy-image": {
"version": "29.0.2",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-easy-image/-/ckeditor__ckeditor5-easy-image-29.0.2.tgz",
"integrity": "sha512-pyBp+c0u1YydwAlWBubKzQrVkYmSApOjLmoc+F1yy/VuLelUhklaKnDlXo8HOjRXAndPHax0Yr966CWM7pQlpA==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-cloud-services": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-image": "*",
"@types/ckeditor__ckeditor5-upload": "*"
}
},
"@types/ckeditor__ckeditor5-editor-classic": {
"version": "27.1.2",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-editor-classic/-/ckeditor__ckeditor5-editor-classic-27.1.2.tgz",
"integrity": "sha512-Xrxav0Bq+rxr/H//nK4+n9o0GpHHMJpfe96wAm4EbjTI5mbBQYH5mCZmKdU8JzQTq6DUF8w9D92RIShqx0rvLw==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-engine": {
"version": "32.0.11",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-engine/-/ckeditor__ckeditor5-engine-32.0.11.tgz",
"integrity": "sha512-mjP5DE+VvVdUqgn9SL1qTr5HRouG6xj+hiFu4Hzz3HWLLBaCEfK6dPUTc6/QM/nMNlNl8Ux9551qCYMoKanzvw==",
"requires": {
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-enter": {
"version": "27.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-enter/-/ckeditor__ckeditor5-enter-27.0.3.tgz",
"integrity": "sha512-qFv9QXk/kXkHQaS748FnO+XZoLOp34x25hOWpOFgBGbrfSZxJ6rYE+vk6BbX+b7sakj7glMctYeitNfGRMcVDQ==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*"
}
},
"@types/ckeditor__ckeditor5-essentials": {
"version": "28.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-essentials/-/ckeditor__ckeditor5-essentials-28.0.3.tgz",
"integrity": "sha512-vHtxf97CSVTRMGpxsEfDduRASHL32+9rvr1bVTmLlTgdykMiP0HY+TmFt07XtDTCpwAShehLu4bc8Qg4mkCCCA==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-clipboard": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-enter": "*",
"@types/ckeditor__ckeditor5-select-all": "*",
"@types/ckeditor__ckeditor5-typing": "*",
"@types/ckeditor__ckeditor5-undo": "*"
}
},
"@types/ckeditor__ckeditor5-export-pdf": {
"version": "31.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-export-pdf/-/ckeditor__ckeditor5-export-pdf-31.0.0.tgz",
"integrity": "sha512-ZQdL2eI/zpPtmMB8Qd5VHqvDx8VNsnCs4SPMWgSG1lrwC7tM0cnyLkCcVxHQYcvZIlihzEF/QJJ+AV9waxT9Pg==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-export-word": {
"version": "27.0.4",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-export-word/-/ckeditor__ckeditor5-export-word-27.0.4.tgz",
"integrity": "sha512-2cpRFCsTHUh3xlbr3IdqfxhRs2AnfvViT0qekhk3SnP9VsUBiqN9CPcgGkBvk3huv30w5kiIpT2UH8l1Ff5Biw==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-font": {
"version": "33.0.1",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-font/-/ckeditor__ckeditor5-font-33.0.1.tgz",
"integrity": "sha512-Hllu+akGhKWRtdahWqkewbmRV4DwPxuXjYzjlvqKoPMNst6UcBOYxeLR/HKoIqI4bn4Vc/p7mZvzKJs0R7CNGw==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-heading": {
"version": "29.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-heading/-/ckeditor__ckeditor5-heading-29.0.3.tgz",
"integrity": "sha512-GfitzATatW4/ZJZ10VFI2OU1nG+r+c7JDHC/s/+9NzkqAyOEd8XTScAX0Sape+vqoNvnMUSAHNa03/ktAjDIqQ==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-paragraph": "*"
}
},
"@types/ckeditor__ckeditor5-highlight": {
"version": "29.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-highlight/-/ckeditor__ckeditor5-highlight-29.0.3.tgz",
"integrity": "sha512-Akq45EwzdI/egK/5YpKkoyYkEvq0w1EaBZMNOaKn8HaNFmhI2mQPwNzGHfEjbGDpKalI9cNTo0ImvqcqNgF+hg==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*"
}
},
"@types/ckeditor__ckeditor5-image": {
"version": "33.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-image/-/ckeditor__ckeditor5-image-33.0.0.tgz",
"integrity": "sha512-rEu93lPml8CuG8UesJa3BBH6Bi84eskeHXgH5kXCPi+lGQvhHd3VrNWa6XgihnO4Z/60i4IYhW48vdWZJ/Iv/A==",
"requires": {
"@types/ckeditor__ckeditor5-clipboard": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-image": "*",
"@types/ckeditor__ckeditor5-typing": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-undo": "*",
"@types/ckeditor__ckeditor5-upload": "*",
"@types/ckeditor__ckeditor5-utils": "*",
"@types/ckeditor__ckeditor5-widget": "*"
}
},
"@types/ckeditor__ckeditor5-indent": {
"version": "29.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-indent/-/ckeditor__ckeditor5-indent-29.0.3.tgz",
"integrity": "sha512-ijVRz3hVR+KT4AmaHxOIyFd/Wi+XLtf5zDQuHP1DMAYgwudj6VGTfFl4vpebFB5wrWeY8EzkJZO1KsRlI21QdA==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*"
}
},
"@types/ckeditor__ckeditor5-language": {
"version": "32.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-language/-/ckeditor__ckeditor5-language-32.0.0.tgz",
"integrity": "sha512-8vd0nRXXZgV5oUF0g6DdBfwWAj3KlQGjpMgxgp6cXBQJ86fINCyyGpqpSmd5L4iSrJHAN3OfQaKLlh9PHLcCVQ==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*"
}
},
"@types/ckeditor__ckeditor5-link": {
"version": "32.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-link/-/ckeditor__ckeditor5-link-32.0.3.tgz",
"integrity": "sha512-vFwxCrwuo2g8bKWStzh5LsFAmLkRucaVBVygiYRTdNbLGcjA28wQiXZ7C7TFLXkkFdgn5jEadMyLqcEwrC9U/w==",
"requires": {
"@types/ckeditor__ckeditor5-clipboard": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-image": "*",
"@types/ckeditor__ckeditor5-typing": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-list": {
"version": "32.0.1",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-list/-/ckeditor__ckeditor5-list-32.0.1.tgz",
"integrity": "sha512-FJxpxq56CgyRhI3DAaxWuKFHQH2ZZPFyKgj/3kF3qMbS2YJ2bBhh9/IfnMi1R2Gesdm0aNgCzM/Q+xp3j4ftHQ==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-enter": "*",
"@types/ckeditor__ckeditor5-typing": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-media-embed": {
"version": "29.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-media-embed/-/ckeditor__ckeditor5-media-embed-29.0.3.tgz",
"integrity": "sha512-Z1EAZ/s04KTh+MJHZ2Xj2ugwX8lOBmlga7BWdzO4/HkJVeNzozWjp4Kxj9bxVr3GA+EaGWS6MHqgnhtN4gqhfg==",
"requires": {
"@types/ckeditor__ckeditor5-clipboard": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-typing": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-undo": "*",
"@types/ckeditor__ckeditor5-utils": "*",
"@types/ckeditor__ckeditor5-widget": "*"
}
},
"@types/ckeditor__ckeditor5-mention": {
"version": "31.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-mention/-/ckeditor__ckeditor5-mention-31.0.0.tgz",
"integrity": "sha512-V2Xq+OrpegeKK6lWaJkpKLZNgW/nLZPhRl6p1rirKsEyVpxxjFO3qSZr3Byb7lxeRkyVLgR23hVgcvt8vfb5AQ==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-minimap": {
"version": "33.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-minimap/-/ckeditor__ckeditor5-minimap-33.0.0.tgz",
"integrity": "sha512-XLu/QyyWVMzQseSqo/hQDWoBKzpZS83pXUwUmJcnXoK+lxaxuh8hYxY8W9qY5vrhh2IHocyrNnjMsLJLtu9FTA==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-pagination": {
"version": "27.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-pagination/-/ckeditor__ckeditor5-pagination-27.0.3.tgz",
"integrity": "sha512-2kyuvQyyi30aZbZHCh0wGpSVp9Q+v5N5AvEHAuSvj6/GOmPRdxK4YyAK/aO3FapUb3bxgvQilyIdA6JtIx1inQ==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*"
}
},
"@types/ckeditor__ckeditor5-paragraph": {
"version": "27.0.5",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-paragraph/-/ckeditor__ckeditor5-paragraph-27.0.5.tgz",
"integrity": "sha512-Clevh7N4G15uFZky505TIM+9qYh9Qwf1oULyh9ntsCxDUNMpqhbmRjC/9J+qcTNLLZ1xppEs75r3ejM01ZkcQg==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*"
}
},
"@types/ckeditor__ckeditor5-paste-from-office": {
"version": "29.0.1",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-paste-from-office/-/ckeditor__ckeditor5-paste-from-office-29.0.1.tgz",
"integrity": "sha512-/Asiwf6/cIA1R0tLIpsdiwyqOKYGQLc9va/GdTeZSAj1YG5OENeMlUK32pRth5BxS7dFlhK/xDsP5NhY/ZEUvQ==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-clipboard": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*"
}
},
"@types/ckeditor__ckeditor5-real-time-collaboration": {
"version": "32.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-real-time-collaboration/-/ckeditor__ckeditor5-real-time-collaboration-32.0.0.tgz",
"integrity": "sha512-u93DiYz2Q2+0ILR4srrmabWYlBx1LTcEusSbE7ylvQrcTs4qmgWlio81FyEMEtn9G5hG4kqH/WN0WfhHjWoFTQ==",
"requires": {
"@types/ckeditor__ckeditor5-collaboration-core": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-restricted-editing": {
"version": "32.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-restricted-editing/-/ckeditor__ckeditor5-restricted-editing-32.0.0.tgz",
"integrity": "sha512-FCOqLUbMxHBaghkXuVHl6hJy9VmimlEXPiMSHeK1jmjq3prsCvavup31Ps+zhwPlo0Bd7aS7GBdUJPGuYkYP9w==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-select-all": {
"version": "31.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-select-all/-/ckeditor__ckeditor5-select-all-31.0.0.tgz",
"integrity": "sha512-Sgp9N7HHdRcE+9UZlamI3f3ZUCt1fbAYyBv3OhmS9RO9Ev/vejGcSCh3tEddzLfqBcU9HNnl39SQK0zCjeKLEA==",
"dev": true,
"requires": {
"@types/ckeditor__ckeditor5-core": "*"
}
},
"@types/ckeditor__ckeditor5-table": {
"version": "33.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-table/-/ckeditor__ckeditor5-table-33.0.0.tgz",
"integrity": "sha512-a711hMOd4u/zqP/dTvEoP/bpnKLxfRasaZtiv3kepIAYub2Acz5ZOi9Gha71sWRwGK3Jeq+4q8gPuNJHYSRttQ==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*",
"@types/ckeditor__ckeditor5-widget": "*"
}
},
"@types/ckeditor__ckeditor5-track-changes": {
"version": "32.0.0",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-track-changes/-/ckeditor__ckeditor5-track-changes-32.0.0.tgz",
"integrity": "sha512-fFe+Tnni2BzrnOYD46zSkAf/StCSAaClN+lILHlWGBKo1xMod1T+hcsrnPkVrFwYSlXraDIvJIEeArrXYCKGnA==",
"requires": {
"@types/ckeditor__ckeditor5-collaboration-core": "*",
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-typing": {
"version": "32.0.1",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-typing/-/ckeditor__ckeditor5-typing-32.0.1.tgz",
"integrity": "sha512-DskFBdfcUACpxVjhdpZTCD8H3gnG/zu08kWyT6TczuBJEXTRoCfX/lZ0Dh7sd20/dxow21pLC4V9Uv/yNUquBA==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-ui": {
"version": "32.0.2",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-ui/-/ckeditor__ckeditor5-ui-32.0.2.tgz",
"integrity": "sha512-0cAaEtXB+i8jnSQMVB50LqI91gJkmG8AnFsowpRPJczsnakMNYTlV+cEhPMe2RbwWxScler0jLmUNsbEORZOTw==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-undo": {
"version": "27.0.3",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-undo/-/ckeditor__ckeditor5-undo-27.0.3.tgz",
"integrity": "sha512-UpbmO0V82XvoVsnIjdM1Cb9RE9lB9vxGYKkQUzGwtw4wZbMb1A+CMIYkZIXO3aNs6x42F562ymFpjjkHBzgLHA==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*"
}
},
"@types/ckeditor__ckeditor5-upload": {
"version": "27.0.7",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-upload/-/ckeditor__ckeditor5-upload-27.0.7.tgz",
"integrity": "sha512-E8ubVL/94RX4qQe5M7OmSEmH1sTRfz0cwSmfe/vRlTedzM5pzwczXXMYzbnbz28UzOmraOS0Zgq+9WVBcPHJ6Q==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-utils": {
"version": "28.0.14",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-utils/-/ckeditor__ckeditor5-utils-28.0.14.tgz",
"integrity": "sha512-EJmGXoBOAxSwQIWdj3EEx4f7LWLkAP5P5RNYnWEUwBO3e3MdtLt/f8mTRyx1bnt1dmdrrAKD9hVJx1216vXOnQ==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*"
}
},
"@types/ckeditor__ckeditor5-widget": {
"version": "33.0.1",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-widget/-/ckeditor__ckeditor5-widget-33.0.1.tgz",
"integrity": "sha512-dHhFdVj2LFo0nCYJOYB5hohZiJNrkI0xICBBejbnzHxzyjxgYpaUoOKsItjxl49DeCdEJ82DU9Wu/cpmTJyCKw==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*",
"@types/ckeditor__ckeditor5-enter": "*",
"@types/ckeditor__ckeditor5-typing": "*",
"@types/ckeditor__ckeditor5-ui": "*",
"@types/ckeditor__ckeditor5-utils": "*"
}
},
"@types/ckeditor__ckeditor5-word-count": {
"version": "29.0.2",
"resolved": "https://registry.npmjs.org/@types/ckeditor__ckeditor5-word-count/-/ckeditor__ckeditor5-word-count-29.0.2.tgz",
"integrity": "sha512-eZ9NwCtTsWOLtNYxLfNvBLx6DfcPgYh4+2p9508zQbQ4x9jMOgs9Vx4tGbFVM501eIGCp4g1XjobbWGuBJqpMA==",
"requires": {
"@types/ckeditor__ckeditor5-core": "*",
"@types/ckeditor__ckeditor5-engine": "*"
}
},
"@types/node": {
"version": "18.0.1",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.1.tgz",
"integrity": "sha512-CmR8+Tsy95hhwtZBKJBs0/FFq4XX7sDZHlGGf+0q+BRZfMbOTkzkj0AFAuTyXbObDIoanaBBW0+KEW+m3N16Wg=="
},
"@types/prop-types": {
"version": "15.7.5",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
"integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
},
"@types/react": {
"version": "18.0.15",
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.15.tgz",
"integrity": "sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==",
"requires": {
"@types/prop-types": "*",
"@types/scheduler": "*",
"csstype": "^3.0.2"
}
},
"@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/webidl-conversions": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-6.1.1.tgz",
"integrity": "sha512-XAahCdThVuCFDQLT7R7Pk/vqeObFNL3YqRyFZg+AqAP/W1/w3xHaIxuW7WszQqTbIBOPRcItYJIou3i/mppu3Q=="
},
"@types/whatwg-url": {
"version": "8.2.1",
"resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.1.tgz",
"integrity": "sha512-2YubE1sjj5ifxievI5Ge1sckb9k/Er66HyR2c+3+I6VDUUg1TLPdYYTEbQ+DjRkS4nTxMJhgWfSfMRD2sl2EYQ==",
"requires": {
"@types/node": "*",
"@types/webidl-conversions": "*"
}
},
"abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
},
"accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"requires": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
}
},
"acorn": {
"version": "8.7.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz",
"integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==",
"optional": true
},
"acorn-walk": {
"version": "8.2.0",
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz",
"integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
"optional": true
},
"after": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz",
"integrity": "sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA=="
},
"agent-base": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
"optional": true,
"requires": {
"debug": "4"
},
"dependencies": {
"debug": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
"optional": true,
"requires": {
"ms": "2.1.2"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"optional": true
}
}
},
"ansi-align": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
"integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
"requires": {
"string-width": "^4.1.0"
}
},
"ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
},
"ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
"color-convert": "^2.0.1"
}