-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
6007 lines (6007 loc) · 222 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": "umc-showhoo",
"version": "0.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "umc-showhoo",
"version": "0.0.0",
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^42.0.2",
"@ckeditor/ckeditor5-react": "^8.0.0",
"async": "^3.2.5",
"axios": "^1.7.4",
"quill-image-uploader": "^1.3.0",
"rc-slider": "^11.1.5",
"react": "^18.3.1",
"react-calendar": "^5.0.0",
"react-contenteditable": "^3.3.7",
"react-datepicker": "^7.3.0",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.25.1",
"react-select": "^5.8.0",
"react-table": "^7.8.0",
"styled-components": "^6.1.12"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"vite": "^5.3.5"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dev": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz",
"integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==",
"dependencies": {
"@babel/highlight": "^7.24.7",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz",
"integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz",
"integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.24.7",
"@babel/generator": "^7.25.0",
"@babel/helper-compilation-targets": "^7.25.2",
"@babel/helper-module-transforms": "^7.25.2",
"@babel/helpers": "^7.25.0",
"@babel/parser": "^7.25.0",
"@babel/template": "^7.25.0",
"@babel/traverse": "^7.25.2",
"@babel/types": "^7.25.2",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/generator": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz",
"integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==",
"dependencies": {
"@babel/types": "^7.25.0",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^2.5.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz",
"integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==",
"dev": true,
"dependencies": {
"@babel/compat-data": "^7.25.2",
"@babel/helper-validator-option": "^7.24.8",
"browserslist": "^4.23.1",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz",
"integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==",
"dependencies": {
"@babel/traverse": "^7.24.7",
"@babel/types": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz",
"integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==",
"dev": true,
"dependencies": {
"@babel/helper-module-imports": "^7.24.7",
"@babel/helper-simple-access": "^7.24.7",
"@babel/helper-validator-identifier": "^7.24.7",
"@babel/traverse": "^7.25.2"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.24.8",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz",
"integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-simple-access": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz",
"integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==",
"dev": true,
"dependencies": {
"@babel/traverse": "^7.24.7",
"@babel/types": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.24.8",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz",
"integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
"integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.24.8",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz",
"integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz",
"integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==",
"dev": true,
"dependencies": {
"@babel/template": "^7.25.0",
"@babel/types": "^7.25.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz",
"integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.24.7",
"chalk": "^2.4.2",
"js-tokens": "^4.0.0",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.25.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz",
"integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==",
"dependencies": {
"@babel/types": "^7.25.2"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-self": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz",
"integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-source": {
"version": "7.24.7",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz",
"integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.24.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz",
"integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.25.0",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz",
"integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==",
"dependencies": {
"@babel/code-frame": "^7.24.7",
"@babel/parser": "^7.25.0",
"@babel/types": "^7.25.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.25.3",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz",
"integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==",
"dependencies": {
"@babel/code-frame": "^7.24.7",
"@babel/generator": "^7.25.0",
"@babel/parser": "^7.25.3",
"@babel/template": "^7.25.0",
"@babel/types": "^7.25.2",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.25.2",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz",
"integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==",
"dependencies": {
"@babel/helper-string-parser": "^7.24.8",
"@babel/helper-validator-identifier": "^7.24.7",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@ckeditor/ckeditor5-adapter-ckfinder": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-42.0.2.tgz",
"integrity": "sha512-nX624WYyyJh6BGGy7jNOlEyf+Kv95VWHKlqn39HLTLKlONBp3zBhAtN9rd0gqU5EM6FgPQ+RjOtQinuto0B6oQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-upload": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-alignment": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-42.0.2.tgz",
"integrity": "sha512-g6I0f5Ko7tckHrKYyZhNQL3dGHTcMbjypIfEkk3SAv68X4bDKLImVUJ1L6y0aZnGNoI40cMr0byEyln5rOq67Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-autoformat": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-42.0.2.tgz",
"integrity": "sha512-tnMdNc8VJ4y4wqbkSAbBGRiUukByOo1nBqyvzYS+SZ2Wzo67OmzKybvqz60PFYIbPAQJa0/uFkvgd55c+VTaqg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-autosave": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-42.0.2.tgz",
"integrity": "sha512-QIsftrJ6LjJrmUTDfJYpBKy9DJ79ltt2pMHtb8DhoyugGZUup40pFvMrt/4/UuQRm64jS/IjhwWXkSMg4PejJw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-basic-styles": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-42.0.2.tgz",
"integrity": "sha512-LT0Kk1K30z/YhI48QBDa69tjU1G2ljSKi5pU5pfiSBLhMl1ShLmXIAy6cEHnijHS0mte8FGwhiGXmNB/jAZ7Iw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-block-quote": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-42.0.2.tgz",
"integrity": "sha512-xfX+tdAhn7WPHNNZR5Wkjl+OnmbNlEOVVZCL2iAjfswf4r3CglLnJOa529FO+4MyNcwkP+joQ3iVBclZNbETLw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-enter": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-build-classic": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-build-classic/-/ckeditor5-build-classic-42.0.2.tgz",
"integrity": "sha512-jzQ54btXx1EL6ioLLGWu0SMSVUqQJAuJC+K18yKaLP48gep6DnZ9unsTtJhkhKOLE21sEGUUnP3GXo/MzMBflw==",
"dependencies": {
"@ckeditor/ckeditor5-adapter-ckfinder": "42.0.2",
"@ckeditor/ckeditor5-autoformat": "42.0.2",
"@ckeditor/ckeditor5-basic-styles": "42.0.2",
"@ckeditor/ckeditor5-block-quote": "42.0.2",
"@ckeditor/ckeditor5-ckbox": "42.0.2",
"@ckeditor/ckeditor5-ckfinder": "42.0.2",
"@ckeditor/ckeditor5-cloud-services": "42.0.2",
"@ckeditor/ckeditor5-easy-image": "42.0.2",
"@ckeditor/ckeditor5-editor-classic": "42.0.2",
"@ckeditor/ckeditor5-essentials": "42.0.2",
"@ckeditor/ckeditor5-heading": "42.0.2",
"@ckeditor/ckeditor5-image": "42.0.2",
"@ckeditor/ckeditor5-indent": "42.0.2",
"@ckeditor/ckeditor5-link": "42.0.2",
"@ckeditor/ckeditor5-list": "42.0.2",
"@ckeditor/ckeditor5-media-embed": "42.0.2",
"@ckeditor/ckeditor5-paragraph": "42.0.2",
"@ckeditor/ckeditor5-paste-from-office": "42.0.2",
"@ckeditor/ckeditor5-table": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-ckbox": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-42.0.2.tgz",
"integrity": "sha512-RvCUphlhrTuGBy78kEOFJvdvmP3o7ajibubOOpVfUMz1V8BbTmmx1+XaveCDxznkwiCLUwqZplWZnpPoEABj2w==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-upload": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"blurhash": "2.0.5",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-ckfinder": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-42.0.2.tgz",
"integrity": "sha512-3lkMF+9Z3R1OUfwZJdORlRDgPSyR9Be57zgizpevpKTenxrZ+UU33ib/kvK8LXVDOzz3qp7UyCucLfY1KNXCzA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-clipboard": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-42.0.2.tgz",
"integrity": "sha512-x76SjAhaguwVQtJSgz62q96RsJsw0eSM7ZnuUqLjMMzO+hq2hAj7ZIJNPcA46ZyDR6LDQzH760IumSz0xlHn9w==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-cloud-services": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-42.0.2.tgz",
"integrity": "sha512-oNdtgD/suEh5nAndXsjik8HgRDk095EGxkmrMO+Z3gbOit28fvTDL6bbUOQvenoNNWa7RXLZMbfyiTMuNH+X8Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-code-block": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-42.0.2.tgz",
"integrity": "sha512-NFGn+350VS6/UNhHm9CurOLm3ZiXFUCO/SgKRILPKZ82Wh2GQqocs5O3yvvo1WQ9jA2DEwjfN0TgOpwgVOZQPQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-enter": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-core": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-42.0.2.tgz",
"integrity": "sha512-LkNx1Qpk/gwh0wYkl4FdZfi1N2G5Gmp026sVp301boyE9sSVeR3YxcSdKXfsr2HII+7EdJHxMswTvnd/L+IdSg==",
"dependencies": {
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"@ckeditor/ckeditor5-watchdog": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-easy-image": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-42.0.2.tgz",
"integrity": "sha512-JYVpX6lRVRve8roROx5y6nsixLXLuVwIokBLoo+usS313xeeZvjoLrxGTeRuyyVbK3BFPE+zqyXsgqGs1Q0stg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-upload": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-editor-balloon": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-42.0.2.tgz",
"integrity": "sha512-NXTVQ3aBW8OirKgv8PJvjSDDbl39JGlnS/W+/LRwUlOgHVVWHVSMMqY52AhP90TzP6xfbFYBYX8n13EB6o/4Bw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-classic": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-42.0.2.tgz",
"integrity": "sha512-K9+154AP/OpxDn6702772QCiT830lAQXsiUty1Z35MM3hVS5quwkuxS6V0NjKxx0AcqUmmgdXoFxx6v4mj3R7g==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-decoupled": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-42.0.2.tgz",
"integrity": "sha512-ANhlpcZXV+nZl/f9o+wS5vqc+Va5K4LnYA0F/pJNTNlighVCa1nGQX11tRGm48vItpNlgQxty+p86NHa+7YrLw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-inline": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-42.0.2.tgz",
"integrity": "sha512-gWngpGE/6JDCyKpKTX7iIgFaxrDPzocZt56p1JmBJCNpVQb4sGoZs94uUg7rxlVo8t3PDH+foL49gSdBKYS9uw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-editor-multi-root": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-42.0.2.tgz",
"integrity": "sha512-1Cv4WGB75KoWZWewCOnHP4s4HGFXKt3BajvDkN8LXS6CtaIPDkH18okY/ivH/Idhu1pT9k2bjzCfR7W4EhtRJg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-engine": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-42.0.2.tgz",
"integrity": "sha512-mI4+X6Z0ihnyAKzka5RjoUgZoaRDckMniN8LLYNum3ewz+KWIVjtHn6NBrqEqw24BpwYfSVEPL/NdgA6xl93Jw==",
"dependencies": {
"@ckeditor/ckeditor5-utils": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-enter": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-42.0.2.tgz",
"integrity": "sha512-pzVXQPdBgskiqVpCG/yxliuEXPECCI3GJ/OF5wXs2GQ04IcqBz5FsazUtSLS5nnA4e3YpcdzzEC0Kn1ASdl7QQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-essentials": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-42.0.2.tgz",
"integrity": "sha512-4qhW/7zm69KHnotKEs05YB6YTD6WB6QWJ6U44V6dFGJUUUmYN1fOt9ri6lU8snUVhJrU0C9IuGpVkb8Aby79GQ==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "42.0.2",
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-enter": "42.0.2",
"@ckeditor/ckeditor5-select-all": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-undo": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-find-and-replace": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-42.0.2.tgz",
"integrity": "sha512-9Fc5nKUhDtivHxGoY5nEvwjqUyvMwcNs1Xo6nt9aXeG0gd4mrCdUQaQfRIlcycLmeVD1MgKfWh7sOv+EtuYFRA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-font": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-42.0.2.tgz",
"integrity": "sha512-Soj1auf82Zz6y56qKf6nV6RSjNPENZm9vpkJ9jhyQ4pMh6YvQ7EkzbOwPCoskXm+ab8EAuH+bjS0n5lewN5i7Q==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-heading": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-42.0.2.tgz",
"integrity": "sha512-1lwxsxzJRikSerwhH1By9FlAO2EQhcrt3xnpxBFME3pS2Y6tbkHj81W5Lu2cf+0ew5Bzcp5uqTvaArRtVssY1A==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-paragraph": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-highlight": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-42.0.2.tgz",
"integrity": "sha512-I/qVqC1YS6Hfg1dZjP665NU2fIx5Dk4Rjq2ku7yxQrsmG+rle2xrEzXF1BsaBeK6ko+fX7JaP86dTvywnnOeaw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-horizontal-line": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-42.0.2.tgz",
"integrity": "sha512-zXnK2k5F5lhbLVwHzyURPMRGc8pc1YPz8fYXmz1pf/JG/EgXGGuUlczkpzegBUb9MctFgZbs09xIkTkVBQZmNw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-html-embed": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-42.0.2.tgz",
"integrity": "sha512-aqCV9vQJd6KiYsTEW6UlWtyMTZgXI2oHK7/1p8WUagabHU1ZFT+jkExC8QG9n0M76Sq9TIynqBlfl4OOijT6NQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-html-support": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-42.0.2.tgz",
"integrity": "sha512-z+Tg/jOf9+wzCo/NywkuHPGfOnKHfSr0hvkGjrq8b2OU9B1nJI34VTjJWSFH5NfLpn3tZo2dy3EcaoN9B7rSHA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-enter": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-image": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-42.0.2.tgz",
"integrity": "sha512-RH1r10rsnEFSBNBXe3d02J6JDvoLKxwz/KCvC/EoOR4UEKDe0FNodt3+VZrb0JNqkBUIxqdtvEobXb6YmGQaDQ==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "42.0.2",
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-undo": "42.0.2",
"@ckeditor/ckeditor5-upload": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-indent": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-42.0.2.tgz",
"integrity": "sha512-qXVXqvflW8kKa7odjiSTrQtj75C5opmnGUyrM+37f7CC8OmrcjXJ5GgrFnKwHyny9YHtvQyyN+GCuzuir6a9eA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-language": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-42.0.2.tgz",
"integrity": "sha512-s0pMdNxuE+kBCFiop5Lgv/UsYAYLKCENesMXVIRrxI73GRjwJXIq5f/5a7xwvfmH3/TQT5GMrfNmf5EeYo5NHA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-link": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-42.0.2.tgz",
"integrity": "sha512-KySX11v1RyimZyc4u3AF6a/bEvA3gQg/krRsrzBbMIadtC1WN/C7w7XzjmYvx8Ui0SsH/ChBu16SxmRKO4HuTA==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "42.0.2",
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-list": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-42.0.2.tgz",
"integrity": "sha512-NTNDb01QDyjDZis8nyOsvgSNwy6YniulGDZdyeulhmFy6zyHG0GFeYA0kAyW6/bnniWyW9cpfUrAK9KTLuql4A==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "42.0.2",
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-enter": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-markdown-gfm": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-42.0.2.tgz",
"integrity": "sha512-mh81YHQqVF0ZVSgd7hbO3EzuM78zIhwwZiiVsJ68e4aCfpYjc3Ni1NpyORj+tian743PmFr7WAUqIePdNPmQEg==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "42.0.2",
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"ckeditor5": "42.0.2",
"marked": "4.0.12",
"turndown": "7.2.0",
"turndown-plugin-gfm": "1.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-media-embed": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-42.0.2.tgz",
"integrity": "sha512-iXGcfgOm0IWa600ln5YeSssg7Sew6Lf1z9ziTxsQsmforPIqXgZQEvdLoo0tABddSRQZI+yQZnRnwrus9sZXIA==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "42.0.2",
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-undo": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-mention": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-42.0.2.tgz",
"integrity": "sha512-81MYULfB7bHDb5Y7saIZMkNVG1BJV/ir5BwIDuuXwGXLNVX++uMTK4ryAItYToiSFN8/NBms7JFXPrRhL/zbOw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-minimap": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-42.0.2.tgz",
"integrity": "sha512-dOBT6bS/7tREFmpRCD4XwOEmoW4p7ZV1Pp3tA/KYQ++2BAgI/O/Yeww7nlhsKhal4r74v459hgihI/SnlfqBQA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-page-break": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-42.0.2.tgz",
"integrity": "sha512-h6Wb0fWsl4a0MyU8W3F4Yku/1CWnR6tQrcMapn0sHB9W/HAvHLQIJGdsYh+a1W6QzMIjpVAqjT4mxQ1rU86RkQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-paragraph": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-42.0.2.tgz",
"integrity": "sha512-feI7Rw76uPbPmoFeVEPpKdPTOjdlccpWabhfrimgT08rECLa7ErFw2oRZVmnx5+kjX+NAUeD9kaUZUUkNNP0wg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-paste-from-office": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-42.0.2.tgz",
"integrity": "sha512-9K54E44rEjvLqWKRRHeifOlb1bICKzzX8gOv/i90sFQfMeQphA6qEn3WJZNQY4NY9Uwhu3kF/gh3/dqlcBhsvw==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "42.0.2",
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-react": {
"version": "8.0.0",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-react/-/ckeditor5-react-8.0.0.tgz",
"integrity": "sha512-CyepIX0E7Gsf+imgyV/jtoIDbyqXZ8PRSAACBBVxBOHB+KBYDE/vT6HOU+M5ntAimvt887r1qaTowRR6F1QHlw==",
"dependencies": {
"prop-types": "^15.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"ckeditor5": ">=42.0.0 || ^0.0.0-nightly",
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/@ckeditor/ckeditor5-remove-format": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-42.0.2.tgz",
"integrity": "sha512-YIyKibU44Jt6P9qu3WGPjUUh/pb5dvexeE1XG6f5JNtVlZCy3sUI+BDytzqWI68/coOHBKYkKSDOEQdzw83PdA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-restricted-editing": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-42.0.2.tgz",
"integrity": "sha512-tfnEE6ieR2UhjZ9zoDNfXIMAMy2FWoajASKffdtpTMBjkVKzM+isg8j0hEkWgiQqCsJYVWt0314nPZrm5EUIfA==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-select-all": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-42.0.2.tgz",
"integrity": "sha512-eqLhxmsxDQ8s+Op4f0OoXbN9vwz0hekE1HxsClXIsqwhjsO2o/HYcyhIzR9lPgmi4bVf8uy8T9oyWQNRLv4S9w==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-show-blocks": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-42.0.2.tgz",
"integrity": "sha512-CFYJN3gyiWwJ1mDonzIktRL/A+WONZuyCptELqlU51RRCwbG7eSMtu2Eyd+Q463zYbOKZcdr5uNvlWuRpSsalw==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-source-editing": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-42.0.2.tgz",
"integrity": "sha512-lo/ZmBeAoWu9j0qfuUVIpc2QzZmcrYZ2enloz2mL22DCn3eP8IstE7gSmZlQ/DQxcPC5Sf2uC0l9IurBAP9+pg==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-theme-lark": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-special-characters": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-42.0.2.tgz",
"integrity": "sha512-B2E9thXW0Ej1istiResH6987g+REnX18aoxW4uXG+PHDrYWjsV4fClEnjWdkO/O0A3yOoNc4LYAbGSo7z0g/1g==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-style": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-42.0.2.tgz",
"integrity": "sha512-vq1GSeOtZm00W4FC6MgqukJbdDE394Sh7ID6634gKmdknbxOBvNcF0XUdAu+kWtJzTjYVrC4+oPYpS5C+odidQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-typing": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-table": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-42.0.2.tgz",
"integrity": "sha512-fFMXbQCa7UR4aAmwVkKzDcRmKCd2YwE1iNLeGWJz7tz1c+hGeadej0aHgUxBw+hHu6DhS9AyvtwmNweQpc3PnQ==",
"dependencies": {
"@ckeditor/ckeditor5-clipboard": "42.0.2",
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-ui": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"@ckeditor/ckeditor5-widget": "42.0.2",
"ckeditor5": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-theme-lark": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-42.0.2.tgz",
"integrity": "sha512-t+/JVtK+lWzfLywsZX7eE8tfyBSnsaTsxeo84ZbSU9M1Vts5FN/5JExiY89VjsT8m84VAufbG+fDGjQpiYzsyg==",
"dependencies": {
"@ckeditor/ckeditor5-ui": "42.0.2"
}
},
"node_modules/@ckeditor/ckeditor5-typing": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-42.0.2.tgz",
"integrity": "sha512-xwGazKjCJOQViGnk/Q0yVg98mc0aDJHvx6FsCFRF6e7B8WiMq8rPQjfO63TYOnUSOIkQJerbAv+hrsBS8XdxaQ==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-engine": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"lodash-es": "4.17.21"
}
},
"node_modules/@ckeditor/ckeditor5-ui": {
"version": "42.0.2",
"resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-42.0.2.tgz",
"integrity": "sha512-Lrej61+xTTqIJSlA9FfqwpEClVoRabM3na8MDiWjAzneQkPgFtw1WTgUKvxNaI+eMXCmT/HVNj/RCg9vqt0pug==",
"dependencies": {
"@ckeditor/ckeditor5-core": "42.0.2",
"@ckeditor/ckeditor5-utils": "42.0.2",
"color-convert": "2.0.1",
"color-parse": "1.4.2",
"lodash-es": "4.17.21",
"vanilla-colorful": "0.7.2"
}
},
"node_modules/@ckeditor/ckeditor5-undo": {
"version": "42.0.2",