-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage-lock.json
14105 lines (14105 loc) · 538 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": "@eclipse-syson/syson-parent",
"version": "2025.1.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@eclipse-syson/syson-parent",
"version": "2025.1.1",
"license": "EPL-2.0",
"workspaces": [
"./frontend/*"
],
"devDependencies": {
"turbo": "2.3.3"
},
"engines": {
"node": "18.7.0",
"npm": "8.15.0"
}
},
"frontend/syson": {
"name": "@eclipse-syson/syson",
"version": "2025.1.1",
"license": "EPL-2.0",
"dependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-charts": "2025.1.1",
"@eclipse-sirius/sirius-components-core": "2025.1.1",
"@eclipse-sirius/sirius-components-deck": "2025.1.1",
"@eclipse-sirius/sirius-components-diagrams": "2025.1.1",
"@eclipse-sirius/sirius-components-formdescriptioneditors": "2025.1.1",
"@eclipse-sirius/sirius-components-forms": "2025.1.1",
"@eclipse-sirius/sirius-components-gantt": "2025.1.1",
"@eclipse-sirius/sirius-components-omnibox": "2025.1.1",
"@eclipse-sirius/sirius-components-portals": "2025.1.1",
"@eclipse-sirius/sirius-components-selection": "2025.1.1",
"@eclipse-sirius/sirius-components-tables": "2025.1.1",
"@eclipse-sirius/sirius-components-trees": "2025.1.1",
"@eclipse-sirius/sirius-components-tsconfig": "2025.1.1",
"@eclipse-sirius/sirius-components-validation": "2025.1.1",
"@eclipse-sirius/sirius-components-widget-reference": "2025.1.1",
"@eclipse-sirius/sirius-web-application": "2025.1.1",
"@eclipse-syson/syson-components": "2025.1.1",
"@lexical/react": "0.8.1",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@mui/x-tree-view": "7.6.1",
"@ObeoNetwork/gantt-task-react": "0.6.1",
"@ObeoNetwork/react-trello": "2.4.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@xstate/react": "3.0.0",
"@xyflow/react": "12.2.1",
"d3": "7.0.0",
"elkjs": "0.8.2",
"export-to-csv": "1.3.0",
"fontsource-roboto": "4.0.0",
"graphql": "16.8.1",
"html-to-image": "1.11.11",
"lexical": "0.8.1",
"material-react-table": "2.13.3",
"notistack": "3.0.1",
"pathfinding": "0.4.18",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "4.4.6",
"react-grid-layout": "1.4.4",
"react-router-dom": "6.26.0",
"subscriptions-transport-ws": "0.11.0",
"svg-path-parser": "1.1.0",
"tss-react": "4.9.7",
"xstate": "4.32.1"
},
"devDependencies": {
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.2.1",
"@types/d3": "7.0.0",
"@types/jest": "27.0.0",
"@types/node": "20.12.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-react": "4.3.0",
"@vitest/coverage-v8": "1.6.0",
"jest-junit-reporter": "1.1.0",
"prettier": "2.7.1",
"typescript": "5.4.5",
"vite": "5.2.11",
"vitest": "1.6.0"
}
},
"frontend/syson-components": {
"name": "@eclipse-syson/syson-components",
"version": "2025.1.1",
"license": "EPL-2.0",
"devDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-charts": "2025.1.1",
"@eclipse-sirius/sirius-components-core": "2025.1.1",
"@eclipse-sirius/sirius-components-deck": "2025.1.1",
"@eclipse-sirius/sirius-components-diagrams": "2025.1.1",
"@eclipse-sirius/sirius-components-formdescriptioneditors": "2025.1.1",
"@eclipse-sirius/sirius-components-forms": "2025.1.1",
"@eclipse-sirius/sirius-components-gantt": "2025.1.1",
"@eclipse-sirius/sirius-components-omnibox": "2025.1.1",
"@eclipse-sirius/sirius-components-portals": "2025.1.1",
"@eclipse-sirius/sirius-components-selection": "2025.1.1",
"@eclipse-sirius/sirius-components-tables": "2025.1.1",
"@eclipse-sirius/sirius-components-trees": "2025.1.1",
"@eclipse-sirius/sirius-components-tsconfig": "2025.1.1",
"@eclipse-sirius/sirius-components-validation": "2025.1.1",
"@eclipse-sirius/sirius-components-widget-reference": "2025.1.1",
"@lexical/react": "0.8.1",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@mui/x-tree-view": "7.6.1",
"@ObeoNetwork/gantt-task-react": "0.6.1",
"@ObeoNetwork/react-trello": "2.4.11",
"@rollup/plugin-image": "2.1.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-react": "4.3.0",
"@vitest/coverage-v8": "1.6.0",
"@xstate/react": "3.0.0",
"@xyflow/react": "12.2.1",
"d3": "7.0.0",
"elkjs": "0.8.2",
"export-to-csv": "1.3.0",
"graphql": "16.8.1",
"html-to-image": "1.11.11",
"jsdom": "16.7.0",
"lexical": "0.8.1",
"material-react-table": "2.13.3",
"pathfinding": "0.4.18",
"prettier": "2.7.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "4.4.6",
"react-grid-layout": "1.4.4",
"react-router-dom": "6.26.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"svg-path-parser": "1.1.0",
"tss-react": "4.9.7",
"typescript": "5.4.5",
"vite": "5.2.11",
"vitest": "1.6.0",
"xstate": "4.32.1"
},
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-charts": "2025.1.1",
"@eclipse-sirius/sirius-components-core": "2025.1.1",
"@eclipse-sirius/sirius-components-deck": "2025.1.1",
"@eclipse-sirius/sirius-components-diagrams": "2025.1.1",
"@eclipse-sirius/sirius-components-formdescriptioneditors": "2025.1.1",
"@eclipse-sirius/sirius-components-forms": "2025.1.1",
"@eclipse-sirius/sirius-components-gantt": "2025.1.1",
"@eclipse-sirius/sirius-components-omnibox": "2025.1.1",
"@eclipse-sirius/sirius-components-portals": "2025.1.1",
"@eclipse-sirius/sirius-components-selection": "2025.1.1",
"@eclipse-sirius/sirius-components-tables": "2025.1.1",
"@eclipse-sirius/sirius-components-trees": "2025.1.1",
"@eclipse-sirius/sirius-components-tsconfig": "2025.1.1",
"@eclipse-sirius/sirius-components-validation": "2025.1.1",
"@eclipse-sirius/sirius-components-widget-reference": "2025.1.1",
"@lexical/react": "0.8.1",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@mui/x-tree-view": "7.6.1",
"@ObeoNetwork/gantt-task-react": "0.6.1",
"@ObeoNetwork/react-trello": "2.4.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@xstate/react": "3.0.0",
"@xyflow/react": "12.2.1",
"d3": "7.0.0",
"elkjs": "0.8.2",
"export-to-csv": "1.3.0",
"graphql": "16.8.1",
"html-to-image": "1.11.11",
"lexical": "0.8.1",
"material-react-table": "2.13.3",
"pathfinding": "0.4.18",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "4.4.6",
"react-grid-layout": "1.4.4",
"react-router-dom": "6.26.0",
"svg-path-parser": "1.1.0",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"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/@apollo/client": {
"version": "3.10.4",
"resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.10.4.tgz",
"integrity": "sha512-51gk0xOwN6Ls1EbTG5svFva1kdm2APHYTzmFhaAdvUQoJFDxfc0UwQgDxGptzH84vkPlo1qunY1FuboyF9LI3Q==",
"dependencies": {
"@graphql-typed-document-node/core": "^3.1.1",
"@wry/caches": "^1.0.0",
"@wry/equality": "^0.5.6",
"@wry/trie": "^0.5.0",
"graphql-tag": "^2.12.6",
"hoist-non-react-statics": "^3.3.2",
"optimism": "^0.18.0",
"prop-types": "^15.7.2",
"rehackt": "^0.1.0",
"response-iterator": "^0.2.6",
"symbol-observable": "^4.0.0",
"ts-invariant": "^0.10.3",
"tslib": "^2.3.0",
"zen-observable-ts": "^1.2.5"
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0",
"graphql-ws": "^5.5.5",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"subscriptions-transport-ws": "^0.9.0 || ^0.11.0"
},
"peerDependenciesMeta": {
"graphql-ws": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"subscriptions-transport-ws": {
"optional": true
}
}
},
"node_modules/@babel/code-frame": {
"version": "7.26.2",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.25.9",
"js-tokens": "^4.0.0",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz",
"integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz",
"integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.26.0",
"@babel/generator": "^7.26.0",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-module-transforms": "^7.26.0",
"@babel/helpers": "^7.26.0",
"@babel/parser": "^7.26.0",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"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/core/node_modules/convert-source-map": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
"dev": true
},
"node_modules/@babel/generator": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz",
"integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
"dependencies": {
"@babel/parser": "^7.26.3",
"@babel/types": "^7.26.3",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz",
"integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==",
"dev": true,
"dependencies": {
"@babel/compat-data": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
"dependencies": {
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
"integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
"dev": true,
"dependencies": {
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/traverse": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz",
"integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
"integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz",
"integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==",
"dev": true,
"dependencies": {
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
"integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
"dependencies": {
"@babel/types": "^7.26.3"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-self": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
"integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-react-jsx-source": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz",
"integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
"dev": true,
"dependencies": {
"@babel/helper-plugin-utils": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
"integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/runtime-corejs3": {
"version": "7.26.0",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.26.0.tgz",
"integrity": "sha512-YXHu5lN8kJCb1LOb9PgV6pvak43X2h4HvRApcN5SdWeaItQOzfn1hgP6jasD6KWQyJDBxrVmA9o9OivlnNJK/w==",
"dev": true,
"dependencies": {
"core-js-pure": "^3.30.2",
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.25.9",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
"integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
"dependencies": {
"@babel/code-frame": "^7.25.9",
"@babel/parser": "^7.25.9",
"@babel/types": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.26.4",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz",
"integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/template": "^7.25.9",
"@babel/types": "^7.26.3",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.26.3",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
"integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
"dev": true
},
"node_modules/@eclipse-sirius/sirius-components-charts": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-charts/2025.1.1/5579cff62d9174127d65a29f6dddc1e4f252a177",
"integrity": "sha512-So8IBfLnWfsVb1FWAGtpEzkAcAl3Ds48gBt5LEzc3Y/obPppNukkilBiFIyrGIJ+9tMzD+N6MEqw4ZSI0PkJRA==",
"license": "EPL-2.0",
"peerDependencies": {
"d3": "7.0.0",
"react": "18.3.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-core": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-core/2025.1.1/75bde13ce135e41df32af9901fb62a6aedf195b9",
"integrity": "sha512-jifaC7mMZ0Zo3VgihSp5aJ7FNXdhG9tWvY5c0i6LhEmQem3+g2WU8ypZoi3SLkoWJvHMTI50xpFIxjTDQVDfTQ==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@xstate/react": "3.0.0",
"graphql": "16.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-deck": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-deck/2025.1.1/e8386ea21ac6c9b0eaefe7bfe77207681ecadaea",
"integrity": "sha512-2CDdhqI0lDS/+uTGNMMMKVib0gtXvTYD4Nbvi9cpWyIZ+hbPmUIo0wO+GB8rVlwvK1Zl0OrV/2BmXwhK5r8ntw==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@ObeoNetwork/react-trello": "2.4.11",
"@xstate/react": "3.0.0",
"graphql": "16.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-diagrams": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-diagrams/2025.1.1/492ba3eab5b4c714600c2098b2f2f0cb7bc1fabd",
"integrity": "sha512-D3BB0+Ohq75ntQzYm6ol6bv09upJ6v6Nqa4RUMsw0QZdUJeAGE2PbZvpH4bpTcddD6XaoNEHrOl7wrDEoCjeVA==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@xstate/react": "3.0.0",
"@xyflow/react": "12.2.1",
"elkjs": "0.8.2",
"graphql": "16.8.1",
"html-to-image": "1.11.11",
"pathfinding": "0.4.18",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "4.4.6",
"svg-path-parser": "1.1.0",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-formdescriptioneditors": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-formdescriptioneditors/2025.1.1/c36e3ebd74ecb69a5a6146801480feb5da9525d4",
"integrity": "sha512-QRwj/nOPF+5+IqeVTTDxzbPA6ksuVMsHLXtcR0wlJJifuuqg3Faob+WYaUpRJVVEWQD45UJecmbC7Z7uIfeuGQ==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-charts": "*",
"@eclipse-sirius/sirius-components-core": "*",
"@eclipse-sirius/sirius-components-forms": "*",
"@eclipse-sirius/sirius-components-tables": "*",
"@lexical/react": "0.8.1",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@mui/x-tree-view": "7.6.1",
"@xstate/react": "3.0.0",
"d3": "7.0.0",
"export-to-csv": "1.3.0",
"graphql": "16.8.1",
"lexical": "0.8.1",
"material-react-table": "2.13.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-forms": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-forms/2025.1.1/7cc0dceb4128e4338c01b865202af5e69aa5a764",
"integrity": "sha512-Ublcgczr4D1ewiREnV2xiBJfMCXdv4O6GLRxDDau/v0y2ut0dS9B3+8YAb/Cry9UkUiuTrv9fi6VkbCstFZKYA==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-charts": "*",
"@eclipse-sirius/sirius-components-core": "*",
"@eclipse-sirius/sirius-components-tables": "*",
"@lexical/react": "0.8.1",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@mui/x-tree-view": "7.6.1",
"@xstate/react": "3.0.0",
"d3": "7.0.0",
"export-to-csv": "1.3.0",
"graphql": "16.8.1",
"lexical": "0.8.1",
"material-react-table": "2.13.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-gantt": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-gantt/2025.1.1/687bcba78bd98ab90271201ff7630f6235c96e58",
"integrity": "sha512-h1pQ8OEe6spH8tmpxMu2LpqeRWs1GrXtklmcYZn6lTVD4ltAf0raL1CzqQN4YZ5MfzFKhdAPHFbzhJBfsjEcHA==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@ObeoNetwork/gantt-task-react": "0.6.1",
"@xstate/react": "3.0.0",
"graphql": "16.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-omnibox": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-omnibox/2025.1.1/1a0758a759c10aadb290cc05b262c20382cb1c92",
"integrity": "sha512-DAvOrC2qqGnxX8tOfDTiGR2QECEyvhabTl4P9fd/ufB9T5HTnFlkju06O1mQV2k/FyIaNzGRexdVr9iCDYjx8A==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@xstate/react": "3.0.0",
"graphql": "16.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-portals": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-portals/2025.1.1/71e8fea63923aa15497c2120174dca6bc7d103de",
"integrity": "sha512-4dkaSVbT7nPEzfH5VTuggAuvZAk/QFKUR9mz4KvprxtnuQEPAe7z5yp79eeV3ML6EdAno2FAxRPjM6iIsaMktQ==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@xstate/react": "3.0.0",
"graphql": "16.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-grid-layout": "1.4.4",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-selection": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-selection/2025.1.1/3dbd5c0f6bf3a905f577f4ad7f068e2e04ec6473",
"integrity": "sha512-+nQfJbGPGWS9/U9lN5gt6+8u02afYvfWj+7zdy85U5lMNZzmomDqdqz+2SxeimdmLDlijXxXZFSJMekj7XsbOQ==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@eclipse-sirius/sirius-components-diagrams": "*",
"@eclipse-sirius/sirius-components-trees": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@xstate/react": "3.0.0",
"@xyflow/react": "12.2.1",
"elkjs": "0.8.2",
"graphql": "16.8.1",
"html-to-image": "1.11.11",
"pathfinding": "0.4.18",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "4.4.6",
"svg-path-parser": "1.1.0",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-tables": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-tables/2025.1.1/5d541156b44b0160afccc717526886df83b6beb9",
"integrity": "sha512-/UxvX0jHVVCpX7KRoCjvQ+KXoi7+R+pDHGsXJbQ9GlzBrhfnC8RyawEGAkOr3wxvBuo2zlTDZPWJ/hYZpc+LEA==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@xstate/react": "3.0.0",
"export-to-csv": "1.3.0",
"graphql": "16.8.1",
"material-react-table": "2.13.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-trees": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-trees/2025.1.1/b4dde5dbbb5fb8d836da15ee96ecafb8d847a1a5",
"integrity": "sha512-kOvJdOeoyzBrzE3NiG+TQQHErWDNDG8xmF4tsKyhJPkBVZ1TrkUxaiBATV8zzc5lMWKn/1jH/UwGn3loi/qSNw==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@xstate/react": "3.0.0",
"graphql": "16.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-tsconfig": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-tsconfig/2025.1.1/164747b74e36a15ca36807564a0ff2f30fb53a3a",
"integrity": "sha512-eClfvTvZ/GwZPIpRBalDUCtQV5peS4lrkFLXkYJeDUkFh32Ee2JzveNpzXc2/zTbbLi48iwkyCYTP/wgbxuq5w==",
"license": "EPL-2.0"
},
"node_modules/@eclipse-sirius/sirius-components-validation": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-validation/2025.1.1/c872bb3e6fbcc00ba07b82e14b1225be3b19b7c4",
"integrity": "sha512-w32jr/MDBAHLA2PFC1L+Ot1sM6XVwiXdZyt+BpXd/1fivyuRXpZI4YlG0QdOBcQmU6RC4GzFrDeulsl54p4vOw==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-core": "*",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@xstate/react": "3.0.0",
"graphql": "16.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-components-widget-reference": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-components-widget-reference/2025.1.1/190196b922f9d0d4629e20ba683f1f36fae106d9",
"integrity": "sha512-+FFyK1YY1XnwSf0RZySbQ98g4aubpPudSnxct5zijBt/+1Zrfsz2YFJD+jwUvqaGkHwRcN62zEuyKfiaG+dLIw==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-charts": "*",
"@eclipse-sirius/sirius-components-core": "*",
"@eclipse-sirius/sirius-components-forms": "*",
"@eclipse-sirius/sirius-components-tables": "*",
"@eclipse-sirius/sirius-components-trees": "*",
"@lexical/react": "0.8.1",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@mui/x-tree-view": "7.6.1",
"@xstate/react": "3.0.0",
"d3": "7.0.0",
"export-to-csv": "1.3.0",
"graphql": "16.8.1",
"lexical": "0.8.1",
"material-react-table": "2.13.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-sirius/sirius-web-application": {
"version": "2025.1.1",
"resolved": "https://npm.pkg.github.com/download/@eclipse-sirius/sirius-web-application/2025.1.1/d583fb1b93009a827741bbdee2ac708d47058512",
"integrity": "sha512-StATUYaTJl7p9616ibdwTV76b0ytVCtFbIBuBnTg3VgWI7K48uZwrmXnvXmhzU3KZCehMVe22Cz5Zcgqw2zyvw==",
"license": "EPL-2.0",
"peerDependencies": {
"@apollo/client": "3.10.4",
"@eclipse-sirius/sirius-components-charts": "*",
"@eclipse-sirius/sirius-components-core": "*",
"@eclipse-sirius/sirius-components-deck": "*",
"@eclipse-sirius/sirius-components-diagrams": "*",
"@eclipse-sirius/sirius-components-formdescriptioneditors": "*",
"@eclipse-sirius/sirius-components-forms": "*",
"@eclipse-sirius/sirius-components-gantt": "*",
"@eclipse-sirius/sirius-components-omnibox": "*",
"@eclipse-sirius/sirius-components-portals": "*",
"@eclipse-sirius/sirius-components-selection": "*",
"@eclipse-sirius/sirius-components-tables": "*",
"@eclipse-sirius/sirius-components-trees": "*",
"@eclipse-sirius/sirius-components-validation": "*",
"@eclipse-sirius/sirius-components-widget-reference": "*",
"@lexical/react": "0.8.1",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@mui/x-tree-view": "7.6.1",
"@ObeoNetwork/gantt-task-react": "0.6.1",
"@ObeoNetwork/react-trello": "2.4.11",
"@xstate/react": "3.0.0",
"@xyflow/react": "12.2.1",
"d3": "7.0.0",
"elkjs": "0.8.2",
"export-to-csv": "1.3.0",
"graphql": "16.8.1",
"html-to-image": "1.11.11",
"lexical": "0.8.1",
"material-react-table": "2.13.3",
"notistack": "3.0.1",
"pathfinding": "0.4.18",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draggable": "4.4.6",
"react-grid-layout": "1.4.4",
"react-router-dom": "6.26.0",
"svg-path-parser": "1.1.0",
"tss-react": "4.9.7",
"xstate": "4.32.1"
}
},
"node_modules/@eclipse-syson/syson": {
"resolved": "frontend/syson",
"link": true
},
"node_modules/@eclipse-syson/syson-components": {
"resolved": "frontend/syson-components",
"link": true
},
"node_modules/@emotion/babel-plugin": {
"version": "11.13.5",
"resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
"integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
"peer": true,
"dependencies": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/runtime": "^7.18.3",
"@emotion/hash": "^0.9.2",
"@emotion/memoize": "^0.9.0",
"@emotion/serialize": "^1.3.3",
"babel-plugin-macros": "^3.1.0",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "4.2.0"
}
},
"node_modules/@emotion/cache": {
"version": "11.14.0",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
"integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
"dependencies": {
"@emotion/memoize": "^0.9.0",
"@emotion/sheet": "^1.4.0",
"@emotion/utils": "^1.4.2",
"@emotion/weak-memoize": "^0.4.0",
"stylis": "4.2.0"
}
},
"node_modules/@emotion/hash": {
"version": "0.9.2",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
"integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g=="
},
"node_modules/@emotion/is-prop-valid": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz",
"integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==",
"peer": true,
"dependencies": {
"@emotion/memoize": "^0.9.0"
}
},
"node_modules/@emotion/memoize": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
"integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ=="
},
"node_modules/@emotion/react": {
"version": "11.14.0",
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
"integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
"peer": true,
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
"@emotion/cache": "^11.14.0",
"@emotion/serialize": "^1.3.3",
"@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
"@emotion/utils": "^1.4.2",
"@emotion/weak-memoize": "^0.4.0",
"hoist-non-react-statics": "^3.3.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/serialize": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
"integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
"dependencies": {
"@emotion/hash": "^0.9.2",
"@emotion/memoize": "^0.9.0",
"@emotion/unitless": "^0.10.0",
"@emotion/utils": "^1.4.2",
"csstype": "^3.0.2"
}
},
"node_modules/@emotion/sheet": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
"integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg=="
},
"node_modules/@emotion/styled": {
"version": "11.14.0",
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.0.tgz",
"integrity": "sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==",
"peer": true,
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.13.5",
"@emotion/is-prop-valid": "^1.3.0",
"@emotion/serialize": "^1.3.3",
"@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
"@emotion/utils": "^1.4.2"
},
"peerDependencies": {
"@emotion/react": "^11.0.0-rc.0",
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/unitless": {
"version": "0.10.0",