-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
2260 lines (2043 loc) · 117 KB
/
pnpm-lock.yaml
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
lockfileVersion: 5.4
specifiers:
'@emotion/react': ^11.10.5
'@emotion/styled': ^11.10.5
'@mui/icons-material': ^5.10.14
'@mui/material': ^5.10.14
'@mui/styles': ^5.10.14
'@reduxjs/toolkit': ^1.9.0
'@types/react': ^18.0.24
'@types/react-dom': ^18.0.8
'@vitejs/plugin-react': ^2.2.0
react: ^18.2.0
react-beautiful-dnd: ^13.1.1
react-dom: ^18.2.0
react-icons: ^4.6.0
react-redux: ^8.0.5
react-router-dom: ^6.4.3
sass: ^1.56.1
typescript: ^4.6.4
vite: ^3.2.3
dependencies:
'@emotion/react': registry.npmjs.org/@emotion/react/11.10.5_fan5qbzahqtxlm5dzefqlqx5ia
'@emotion/styled': registry.npmjs.org/@emotion/styled/11.10.5_otcjdfkheatawhug6fwk7ldzni
'@mui/icons-material': registry.npmjs.org/@mui/icons-material/5.10.14_edp4dc7hnxdrqofuyrrjp2id7y
'@mui/material': registry.npmjs.org/@mui/material/5.10.14_thp4wrxo45nyllusrnt46mid4u
'@mui/styles': registry.npmjs.org/@mui/styles/5.10.14_fan5qbzahqtxlm5dzefqlqx5ia
'@reduxjs/toolkit': registry.npmjs.org/@reduxjs/toolkit/1.9.0_k4ae6lp43ej6mezo3ztvx6pykq
react: registry.npmjs.org/react/18.2.0
react-beautiful-dnd: registry.npmjs.org/react-beautiful-dnd/13.1.1_biqbaboplfbrettd7655fr4n2y
react-dom: registry.npmjs.org/react-dom/18.2.0_react@18.2.0
react-icons: registry.npmjs.org/react-icons/4.6.0_react@18.2.0
react-redux: registry.npmjs.org/react-redux/8.0.5_cn3ejhfta5lq2dae4xucvtkwvu
react-router-dom: registry.npmjs.org/react-router-dom/6.4.3_biqbaboplfbrettd7655fr4n2y
sass: registry.npmjs.org/sass/1.56.1
devDependencies:
'@types/react': registry.npmjs.org/@types/react/18.0.25
'@types/react-dom': registry.npmjs.org/@types/react-dom/18.0.9
'@vitejs/plugin-react': registry.npmjs.org/@vitejs/plugin-react/2.2.0_vite@3.2.4
typescript: registry.npmjs.org/typescript/4.9.3
vite: registry.npmjs.org/vite/3.2.4_sass@1.56.1
packages:
registry.npmjs.org/@ampproject/remapping/2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz}
name: '@ampproject/remapping'
version: 2.2.0
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': registry.npmjs.org/@jridgewell/gen-mapping/0.1.1
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping/0.3.17
dev: true
registry.npmjs.org/@babel/code-frame/7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz}
name: '@babel/code-frame'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmjs.org/@babel/highlight/7.18.6
registry.npmjs.org/@babel/compat-data/7.20.1:
resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz}
name: '@babel/compat-data'
version: 7.20.1
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/core/7.20.2:
resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz}
name: '@babel/core'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmjs.org/@ampproject/remapping/2.2.0
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.18.6
'@babel/generator': registry.npmjs.org/@babel/generator/7.20.4
'@babel/helper-compilation-targets': registry.npmjs.org/@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2
'@babel/helper-module-transforms': registry.npmjs.org/@babel/helper-module-transforms/7.20.2
'@babel/helpers': registry.npmjs.org/@babel/helpers/7.20.1
'@babel/parser': registry.npmjs.org/@babel/parser/7.20.3
'@babel/template': registry.npmjs.org/@babel/template/7.18.10
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.20.1
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
convert-source-map: registry.npmjs.org/convert-source-map/1.9.0
debug: registry.npmjs.org/debug/4.3.4
gensync: registry.npmjs.org/gensync/1.0.0-beta.2
json5: registry.npmjs.org/json5/2.2.1
semver: registry.npmjs.org/semver/6.3.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@babel/generator/7.20.4:
resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz}
name: '@babel/generator'
version: 7.20.4
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
'@jridgewell/gen-mapping': registry.npmjs.org/@jridgewell/gen-mapping/0.3.2
jsesc: registry.npmjs.org/jsesc/2.5.2
dev: true
registry.npmjs.org/@babel/helper-annotate-as-pure/7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz}
name: '@babel/helper-annotate-as-pure'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
dev: true
registry.npmjs.org/@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.2:
resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz}
id: registry.npmjs.org/@babel/helper-compilation-targets/7.20.0
name: '@babel/helper-compilation-targets'
version: 7.20.0
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': registry.npmjs.org/@babel/compat-data/7.20.1
'@babel/core': registry.npmjs.org/@babel/core/7.20.2
'@babel/helper-validator-option': registry.npmjs.org/@babel/helper-validator-option/7.18.6
browserslist: registry.npmjs.org/browserslist/4.21.4
semver: registry.npmjs.org/semver/6.3.0
dev: true
registry.npmjs.org/@babel/helper-environment-visitor/7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz}
name: '@babel/helper-environment-visitor'
version: 7.18.9
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/helper-function-name/7.19.0:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz}
name: '@babel/helper-function-name'
version: 7.19.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmjs.org/@babel/template/7.18.10
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
dev: true
registry.npmjs.org/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz}
name: '@babel/helper-hoist-variables'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
dev: true
registry.npmjs.org/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz}
name: '@babel/helper-module-imports'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
registry.npmjs.org/@babel/helper-module-transforms/7.20.2:
resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz}
name: '@babel/helper-module-transforms'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor/7.18.9
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports/7.18.6
'@babel/helper-simple-access': registry.npmjs.org/@babel/helper-simple-access/7.20.2
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration/7.18.6
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.19.1
'@babel/template': registry.npmjs.org/@babel/template/7.18.10
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.20.1
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@babel/helper-plugin-utils/7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz}
name: '@babel/helper-plugin-utils'
version: 7.20.2
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/helper-simple-access/7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz}
name: '@babel/helper-simple-access'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
dev: true
registry.npmjs.org/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
dev: true
registry.npmjs.org/@babel/helper-string-parser/7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz}
name: '@babel/helper-string-parser'
version: 7.19.4
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/helper-validator-identifier/7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz}
name: '@babel/helper-validator-identifier'
version: 7.19.1
engines: {node: '>=6.9.0'}
registry.npmjs.org/@babel/helper-validator-option/7.18.6:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz}
name: '@babel/helper-validator-option'
version: 7.18.6
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/helpers/7.20.1:
resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz}
name: '@babel/helpers'
version: 7.20.1
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmjs.org/@babel/template/7.18.10
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.20.1
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@babel/highlight/7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz}
name: '@babel/highlight'
version: 7.18.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.19.1
chalk: registry.npmjs.org/chalk/2.4.2
js-tokens: registry.npmjs.org/js-tokens/4.0.0
registry.npmjs.org/@babel/parser/7.20.3:
resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz}
name: '@babel/parser'
version: 7.20.3
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
dev: true
registry.npmjs.org/@babel/plugin-syntax-jsx/7.18.6:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz}
name: '@babel/plugin-syntax-jsx'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.20.2
dev: false
registry.npmjs.org/@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2:
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-jsx/7.18.6
name: '@babel/plugin-syntax-jsx'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.20.2
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.20.2
dev: true
registry.npmjs.org/@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2:
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz}
id: registry.npmjs.org/@babel/plugin-transform-react-jsx-development/7.18.6
name: '@babel/plugin-transform-react-jsx-development'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.20.2
'@babel/plugin-transform-react-jsx': registry.npmjs.org/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2
dev: true
registry.npmjs.org/@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.2:
resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz}
id: registry.npmjs.org/@babel/plugin-transform-react-jsx-self/7.18.6
name: '@babel/plugin-transform-react-jsx-self'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.20.2
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.20.2
dev: true
registry.npmjs.org/@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.2:
resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz}
id: registry.npmjs.org/@babel/plugin-transform-react-jsx-source/7.19.6
name: '@babel/plugin-transform-react-jsx-source'
version: 7.19.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.20.2
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.20.2
dev: true
registry.npmjs.org/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2:
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz}
id: registry.npmjs.org/@babel/plugin-transform-react-jsx/7.19.0
name: '@babel/plugin-transform-react-jsx'
version: 7.19.0
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.20.2
'@babel/helper-annotate-as-pure': registry.npmjs.org/@babel/helper-annotate-as-pure/7.18.6
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports/7.18.6
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.20.2
'@babel/plugin-syntax-jsx': registry.npmjs.org/@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.2
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
dev: true
registry.npmjs.org/@babel/runtime/7.20.1:
resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz}
name: '@babel/runtime'
version: 7.20.1
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmjs.org/regenerator-runtime/0.13.11
dev: false
registry.npmjs.org/@babel/template/7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz}
name: '@babel/template'
version: 7.18.10
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.18.6
'@babel/parser': registry.npmjs.org/@babel/parser/7.20.3
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
dev: true
registry.npmjs.org/@babel/traverse/7.20.1:
resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz}
name: '@babel/traverse'
version: 7.20.1
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.18.6
'@babel/generator': registry.npmjs.org/@babel/generator/7.20.4
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor/7.18.9
'@babel/helper-function-name': registry.npmjs.org/@babel/helper-function-name/7.19.0
'@babel/helper-hoist-variables': registry.npmjs.org/@babel/helper-hoist-variables/7.18.6
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration/7.18.6
'@babel/parser': registry.npmjs.org/@babel/parser/7.20.3
'@babel/types': registry.npmjs.org/@babel/types/7.20.2
debug: registry.npmjs.org/debug/4.3.4
globals: registry.npmjs.org/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@babel/types/7.20.2:
resolution: {integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz}
name: '@babel/types'
version: 7.20.2
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': registry.npmjs.org/@babel/helper-string-parser/7.19.4
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.19.1
to-fast-properties: registry.npmjs.org/to-fast-properties/2.0.0
registry.npmjs.org/@emotion/babel-plugin/11.10.5:
resolution: {integrity: sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz}
name: '@emotion/babel-plugin'
version: 11.10.5
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports/7.18.6
'@babel/plugin-syntax-jsx': registry.npmjs.org/@babel/plugin-syntax-jsx/7.18.6
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@emotion/hash': registry.npmjs.org/@emotion/hash/0.9.0
'@emotion/memoize': registry.npmjs.org/@emotion/memoize/0.8.0
'@emotion/serialize': registry.npmjs.org/@emotion/serialize/1.1.1
babel-plugin-macros: registry.npmjs.org/babel-plugin-macros/3.1.0
convert-source-map: registry.npmjs.org/convert-source-map/1.9.0
escape-string-regexp: registry.npmjs.org/escape-string-regexp/4.0.0
find-root: registry.npmjs.org/find-root/1.1.0
source-map: registry.npmjs.org/source-map/0.5.7
stylis: registry.npmjs.org/stylis/4.1.3
dev: false
registry.npmjs.org/@emotion/cache/11.10.5:
resolution: {integrity: sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz}
name: '@emotion/cache'
version: 11.10.5
dependencies:
'@emotion/memoize': registry.npmjs.org/@emotion/memoize/0.8.0
'@emotion/sheet': registry.npmjs.org/@emotion/sheet/1.2.1
'@emotion/utils': registry.npmjs.org/@emotion/utils/1.2.0
'@emotion/weak-memoize': registry.npmjs.org/@emotion/weak-memoize/0.3.0
stylis: registry.npmjs.org/stylis/4.1.3
dev: false
registry.npmjs.org/@emotion/hash/0.9.0:
resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/hash/-/hash-0.9.0.tgz}
name: '@emotion/hash'
version: 0.9.0
dev: false
registry.npmjs.org/@emotion/is-prop-valid/1.2.0:
resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz}
name: '@emotion/is-prop-valid'
version: 1.2.0
dependencies:
'@emotion/memoize': registry.npmjs.org/@emotion/memoize/0.8.0
dev: false
registry.npmjs.org/@emotion/memoize/0.8.0:
resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz}
name: '@emotion/memoize'
version: 0.8.0
dev: false
registry.npmjs.org/@emotion/react/11.10.5_fan5qbzahqtxlm5dzefqlqx5ia:
resolution: {integrity: sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/react/-/react-11.10.5.tgz}
id: registry.npmjs.org/@emotion/react/11.10.5
name: '@emotion/react'
version: 11.10.5
peerDependencies:
'@babel/core': ^7.0.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@babel/core':
optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@emotion/babel-plugin': registry.npmjs.org/@emotion/babel-plugin/11.10.5
'@emotion/cache': registry.npmjs.org/@emotion/cache/11.10.5
'@emotion/serialize': registry.npmjs.org/@emotion/serialize/1.1.1
'@emotion/use-insertion-effect-with-fallbacks': registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/1.0.0_react@18.2.0
'@emotion/utils': registry.npmjs.org/@emotion/utils/1.2.0
'@emotion/weak-memoize': registry.npmjs.org/@emotion/weak-memoize/0.3.0
'@types/react': registry.npmjs.org/@types/react/18.0.25
hoist-non-react-statics: registry.npmjs.org/hoist-non-react-statics/3.3.2
react: registry.npmjs.org/react/18.2.0
dev: false
registry.npmjs.org/@emotion/serialize/1.1.1:
resolution: {integrity: sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.1.tgz}
name: '@emotion/serialize'
version: 1.1.1
dependencies:
'@emotion/hash': registry.npmjs.org/@emotion/hash/0.9.0
'@emotion/memoize': registry.npmjs.org/@emotion/memoize/0.8.0
'@emotion/unitless': registry.npmjs.org/@emotion/unitless/0.8.0
'@emotion/utils': registry.npmjs.org/@emotion/utils/1.2.0
csstype: registry.npmjs.org/csstype/3.1.1
dev: false
registry.npmjs.org/@emotion/sheet/1.2.1:
resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz}
name: '@emotion/sheet'
version: 1.2.1
dev: false
registry.npmjs.org/@emotion/styled/11.10.5_otcjdfkheatawhug6fwk7ldzni:
resolution: {integrity: sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/styled/-/styled-11.10.5.tgz}
id: registry.npmjs.org/@emotion/styled/11.10.5
name: '@emotion/styled'
version: 11.10.5
peerDependencies:
'@babel/core': ^7.0.0
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@babel/core':
optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@emotion/babel-plugin': registry.npmjs.org/@emotion/babel-plugin/11.10.5
'@emotion/is-prop-valid': registry.npmjs.org/@emotion/is-prop-valid/1.2.0
'@emotion/react': registry.npmjs.org/@emotion/react/11.10.5_fan5qbzahqtxlm5dzefqlqx5ia
'@emotion/serialize': registry.npmjs.org/@emotion/serialize/1.1.1
'@emotion/use-insertion-effect-with-fallbacks': registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/1.0.0_react@18.2.0
'@emotion/utils': registry.npmjs.org/@emotion/utils/1.2.0
'@types/react': registry.npmjs.org/@types/react/18.0.25
react: registry.npmjs.org/react/18.2.0
dev: false
registry.npmjs.org/@emotion/unitless/0.8.0:
resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz}
name: '@emotion/unitless'
version: 0.8.0
dev: false
registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/1.0.0_react@18.2.0:
resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz}
id: registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/1.0.0
name: '@emotion/use-insertion-effect-with-fallbacks'
version: 1.0.0
peerDependencies:
react: '>=16.8.0'
dependencies:
react: registry.npmjs.org/react/18.2.0
dev: false
registry.npmjs.org/@emotion/utils/1.2.0:
resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz}
name: '@emotion/utils'
version: 1.2.0
dev: false
registry.npmjs.org/@emotion/weak-memoize/0.3.0:
resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz}
name: '@emotion/weak-memoize'
version: 0.3.0
dev: false
registry.npmjs.org/@esbuild/android-arm/0.15.14:
resolution: {integrity: sha512-+Rb20XXxRGisNu2WmNKk+scpanb7nL5yhuI1KR9wQFiC43ddPj/V1fmNyzlFC9bKiG4mYzxW7egtoHVcynr+OA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.14.tgz}
name: '@esbuild/android-arm'
version: 0.15.14
engines: {node: '>=12'}
cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
registry.npmjs.org/@esbuild/linux-loong64/0.15.14:
resolution: {integrity: sha512-eQi9rosGNVQFJyJWV0HCA5WZae/qWIQME7s8/j8DMvnylfBv62Pbu+zJ2eUDqNf2O4u3WB+OEXyfkpBoe194sg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.14.tgz}
name: '@esbuild/linux-loong64'
version: 0.15.14
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
requiresBuild: true
dev: true
optional: true
registry.npmjs.org/@jridgewell/gen-mapping/0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz}
name: '@jridgewell/gen-mapping'
version: 0.1.1
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': registry.npmjs.org/@jridgewell/set-array/1.1.2
'@jridgewell/sourcemap-codec': registry.npmjs.org/@jridgewell/sourcemap-codec/1.4.14
dev: true
registry.npmjs.org/@jridgewell/gen-mapping/0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz}
name: '@jridgewell/gen-mapping'
version: 0.3.2
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': registry.npmjs.org/@jridgewell/set-array/1.1.2
'@jridgewell/sourcemap-codec': registry.npmjs.org/@jridgewell/sourcemap-codec/1.4.14
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping/0.3.17
dev: true
registry.npmjs.org/@jridgewell/resolve-uri/3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz}
name: '@jridgewell/resolve-uri'
version: 3.1.0
engines: {node: '>=6.0.0'}
dev: true
registry.npmjs.org/@jridgewell/set-array/1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz}
name: '@jridgewell/set-array'
version: 1.1.2
engines: {node: '>=6.0.0'}
dev: true
registry.npmjs.org/@jridgewell/sourcemap-codec/1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.14
dev: true
registry.npmjs.org/@jridgewell/trace-mapping/0.3.17:
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz}
name: '@jridgewell/trace-mapping'
version: 0.3.17
dependencies:
'@jridgewell/resolve-uri': registry.npmjs.org/@jridgewell/resolve-uri/3.1.0
'@jridgewell/sourcemap-codec': registry.npmjs.org/@jridgewell/sourcemap-codec/1.4.14
dev: true
registry.npmjs.org/@mui/base/5.0.0-alpha.106_2zx2umvpluuhvlq44va5bta2da:
resolution: {integrity: sha512-xJQQtwPCPwr6hGWTBdvDwHYwExn3Bw7nPQkN8Fuz8kHpZqoMVWQvvaFS557AIkkI2AFLV3DxVIMjbCvrIntBWg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.106.tgz}
id: registry.npmjs.org/@mui/base/5.0.0-alpha.106
name: '@mui/base'
version: 5.0.0-alpha.106
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@emotion/is-prop-valid': registry.npmjs.org/@emotion/is-prop-valid/1.2.0
'@mui/types': registry.npmjs.org/@mui/types/7.2.1_@types+react@18.0.25
'@mui/utils': registry.npmjs.org/@mui/utils/5.10.14_react@18.2.0
'@popperjs/core': registry.npmjs.org/@popperjs/core/2.11.6
'@types/react': registry.npmjs.org/@types/react/18.0.25
clsx: registry.npmjs.org/clsx/1.2.1
prop-types: registry.npmjs.org/prop-types/15.8.1
react: registry.npmjs.org/react/18.2.0
react-dom: registry.npmjs.org/react-dom/18.2.0_react@18.2.0
react-is: registry.npmjs.org/react-is/18.2.0
dev: false
registry.npmjs.org/@mui/core-downloads-tracker/5.10.14:
resolution: {integrity: sha512-qLgIJNOR9Dre8JiZ/neVzOf4jf88J6YtOkQqugtMrleLjbfRVUSS4LWl9CSOjNq76quYdmYWnSDgfQqOooT2cQ==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.10.14.tgz}
name: '@mui/core-downloads-tracker'
version: 5.10.14
dev: false
registry.npmjs.org/@mui/icons-material/5.10.14_edp4dc7hnxdrqofuyrrjp2id7y:
resolution: {integrity: sha512-qtH60slQa+7MZRn6kyui8rKuoGDglPqaHX+pzBKNvd8JCOlrnfY5DmGGDdToTXyXl8xJ8nhANZbrbpg7UVKq/Q==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.10.14.tgz}
id: registry.npmjs.org/@mui/icons-material/5.10.14
name: '@mui/icons-material'
version: 5.10.14
engines: {node: '>=12.0.0'}
peerDependencies:
'@mui/material': ^5.0.0
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@mui/material': registry.npmjs.org/@mui/material/5.10.14_thp4wrxo45nyllusrnt46mid4u
'@types/react': registry.npmjs.org/@types/react/18.0.25
react: registry.npmjs.org/react/18.2.0
dev: false
registry.npmjs.org/@mui/material/5.10.14_thp4wrxo45nyllusrnt46mid4u:
resolution: {integrity: sha512-HWzKVAykePMx54WtxVwZyL1W4k3xlHYIqwMw0CaXAvgB3UE9yjABZuuGr8vG5Z6CSNWamzd+s1x8u7pQPFl9og==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/material/-/material-5.10.14.tgz}
id: registry.npmjs.org/@mui/material/5.10.14
name: '@mui/material'
version: 5.10.14
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@emotion/react': registry.npmjs.org/@emotion/react/11.10.5_fan5qbzahqtxlm5dzefqlqx5ia
'@emotion/styled': registry.npmjs.org/@emotion/styled/11.10.5_otcjdfkheatawhug6fwk7ldzni
'@mui/base': registry.npmjs.org/@mui/base/5.0.0-alpha.106_2zx2umvpluuhvlq44va5bta2da
'@mui/core-downloads-tracker': registry.npmjs.org/@mui/core-downloads-tracker/5.10.14
'@mui/system': registry.npmjs.org/@mui/system/5.10.14_v64nlmo6pkqfmpmxge6otzlg54
'@mui/types': registry.npmjs.org/@mui/types/7.2.1_@types+react@18.0.25
'@mui/utils': registry.npmjs.org/@mui/utils/5.10.14_react@18.2.0
'@types/react': registry.npmjs.org/@types/react/18.0.25
'@types/react-transition-group': registry.npmjs.org/@types/react-transition-group/4.4.5
clsx: registry.npmjs.org/clsx/1.2.1
csstype: registry.npmjs.org/csstype/3.1.1
prop-types: registry.npmjs.org/prop-types/15.8.1
react: registry.npmjs.org/react/18.2.0
react-dom: registry.npmjs.org/react-dom/18.2.0_react@18.2.0
react-is: registry.npmjs.org/react-is/18.2.0
react-transition-group: registry.npmjs.org/react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y
dev: false
registry.npmjs.org/@mui/private-theming/5.10.14_fan5qbzahqtxlm5dzefqlqx5ia:
resolution: {integrity: sha512-3aIBe8WK65CwAPDY8nB11hYnzE1CZMymi76UnaFrA/DdGDwl5Y8F6uB+StKrkVmsqF1po7Mp2odqVkHj320gXw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.10.14.tgz}
id: registry.npmjs.org/@mui/private-theming/5.10.14
name: '@mui/private-theming'
version: 5.10.14
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@mui/utils': registry.npmjs.org/@mui/utils/5.10.14_react@18.2.0
'@types/react': registry.npmjs.org/@types/react/18.0.25
prop-types: registry.npmjs.org/prop-types/15.8.1
react: registry.npmjs.org/react/18.2.0
dev: false
registry.npmjs.org/@mui/styled-engine/5.10.14_dovxhg2tvkkxkdnqyoum6wzcxm:
resolution: {integrity: sha512-bgKdM57ExogWpIfhL/ngSlzF4FhbH00vYF+Y5VALTob4uslFqje0xzoWmbfcCn4cZt2NXxZJIwhsq4vzo5itlw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.10.14.tgz}
id: registry.npmjs.org/@mui/styled-engine/5.10.14
name: '@mui/styled-engine'
version: 5.10.14
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.4.1
'@emotion/styled': ^11.3.0
react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@emotion/cache': registry.npmjs.org/@emotion/cache/11.10.5
'@emotion/react': registry.npmjs.org/@emotion/react/11.10.5_fan5qbzahqtxlm5dzefqlqx5ia
'@emotion/styled': registry.npmjs.org/@emotion/styled/11.10.5_otcjdfkheatawhug6fwk7ldzni
csstype: registry.npmjs.org/csstype/3.1.1
prop-types: registry.npmjs.org/prop-types/15.8.1
react: registry.npmjs.org/react/18.2.0
dev: false
registry.npmjs.org/@mui/styles/5.10.14_fan5qbzahqtxlm5dzefqlqx5ia:
resolution: {integrity: sha512-efmROE5O+9qV1Wj7Q/Cz3ZplsuqSwqWRFTUWwTuTedoLetAO6ExgV4vGD1bkFsr9+VkAfJV/Zy4KPM0ouok7aA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/styles/-/styles-5.10.14.tgz}
id: registry.npmjs.org/@mui/styles/5.10.14
name: '@mui/styles'
version: 5.10.14
engines: {node: '>=12.0.0'}
peerDependencies:
'@types/react': ^17.0.0
react: ^17.0.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@emotion/hash': registry.npmjs.org/@emotion/hash/0.9.0
'@mui/private-theming': registry.npmjs.org/@mui/private-theming/5.10.14_fan5qbzahqtxlm5dzefqlqx5ia
'@mui/types': registry.npmjs.org/@mui/types/7.2.1_@types+react@18.0.25
'@mui/utils': registry.npmjs.org/@mui/utils/5.10.14_react@18.2.0
'@types/react': registry.npmjs.org/@types/react/18.0.25
clsx: registry.npmjs.org/clsx/1.2.1
csstype: registry.npmjs.org/csstype/3.1.1
hoist-non-react-statics: registry.npmjs.org/hoist-non-react-statics/3.3.2
jss: registry.npmjs.org/jss/10.9.2
jss-plugin-camel-case: registry.npmjs.org/jss-plugin-camel-case/10.9.2
jss-plugin-default-unit: registry.npmjs.org/jss-plugin-default-unit/10.9.2
jss-plugin-global: registry.npmjs.org/jss-plugin-global/10.9.2
jss-plugin-nested: registry.npmjs.org/jss-plugin-nested/10.9.2
jss-plugin-props-sort: registry.npmjs.org/jss-plugin-props-sort/10.9.2
jss-plugin-rule-value-function: registry.npmjs.org/jss-plugin-rule-value-function/10.9.2
jss-plugin-vendor-prefixer: registry.npmjs.org/jss-plugin-vendor-prefixer/10.9.2
prop-types: registry.npmjs.org/prop-types/15.8.1
react: registry.npmjs.org/react/18.2.0
dev: false
registry.npmjs.org/@mui/system/5.10.14_v64nlmo6pkqfmpmxge6otzlg54:
resolution: {integrity: sha512-2de7XCjRb1j8Od0Stmo0LwFMLpOMNT4wzfINuExXI1TVSuyxXIXUxiC5FEgJW3GMvf/a7SUR8VOiMoKlKWzukw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/system/-/system-5.10.14.tgz}
id: registry.npmjs.org/@mui/system/5.10.14
name: '@mui/system'
version: 5.10.14
engines: {node: '>=12.0.0'}
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
'@types/react': ^17.0.0 || ^18.0.0
react: ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@emotion/react':
optional: true
'@emotion/styled':
optional: true
'@types/react':
optional: true
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@emotion/react': registry.npmjs.org/@emotion/react/11.10.5_fan5qbzahqtxlm5dzefqlqx5ia
'@emotion/styled': registry.npmjs.org/@emotion/styled/11.10.5_otcjdfkheatawhug6fwk7ldzni
'@mui/private-theming': registry.npmjs.org/@mui/private-theming/5.10.14_fan5qbzahqtxlm5dzefqlqx5ia
'@mui/styled-engine': registry.npmjs.org/@mui/styled-engine/5.10.14_dovxhg2tvkkxkdnqyoum6wzcxm
'@mui/types': registry.npmjs.org/@mui/types/7.2.1_@types+react@18.0.25
'@mui/utils': registry.npmjs.org/@mui/utils/5.10.14_react@18.2.0
'@types/react': registry.npmjs.org/@types/react/18.0.25
clsx: registry.npmjs.org/clsx/1.2.1
csstype: registry.npmjs.org/csstype/3.1.1
prop-types: registry.npmjs.org/prop-types/15.8.1
react: registry.npmjs.org/react/18.2.0
dev: false
registry.npmjs.org/@mui/types/7.2.1_@types+react@18.0.25:
resolution: {integrity: sha512-c5mSM7ivD8EsqK6HUi9hQPr5V7TJ/IRThUQ9nWNYPdhCGriTSQV4vL6DflT99LkM+wLiIS1rVjphpEWxERep7A==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/types/-/types-7.2.1.tgz}
id: registry.npmjs.org/@mui/types/7.2.1
name: '@mui/types'
version: 7.2.1
peerDependencies:
'@types/react': '*'
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@types/react': registry.npmjs.org/@types/react/18.0.25
dev: false
registry.npmjs.org/@mui/utils/5.10.14_react@18.2.0:
resolution: {integrity: sha512-12p59+wDZpA++XVJmKwqsZmrA1nmUQ5d0a1yQWtcDjxNyER1EDzozYN/db+FY2i5ceQh2TynPTEwGms2mXDwFg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@mui/utils/-/utils-5.10.14.tgz}
id: registry.npmjs.org/@mui/utils/5.10.14
name: '@mui/utils'
version: 5.10.14
engines: {node: '>=12.0.0'}
peerDependencies:
react: ^17.0.0 || ^18.0.0
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.20.1
'@types/prop-types': registry.npmjs.org/@types/prop-types/15.7.5
'@types/react-is': registry.npmjs.org/@types/react-is/17.0.3
prop-types: registry.npmjs.org/prop-types/15.8.1
react: registry.npmjs.org/react/18.2.0
react-is: registry.npmjs.org/react-is/18.2.0
dev: false
registry.npmjs.org/@popperjs/core/2.11.6:
resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz}
name: '@popperjs/core'
version: 2.11.6
dev: false
registry.npmjs.org/@reduxjs/toolkit/1.9.0_k4ae6lp43ej6mezo3ztvx6pykq:
resolution: {integrity: sha512-ak11IrjYcUXRqlhNPwnz6AcvA2ynJTu8PzDbbqQw4a3xR4KZtgiqbNblQD+10CRbfK4+5C79SOyxnT9dhBqFnA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.0.tgz}
id: registry.npmjs.org/@reduxjs/toolkit/1.9.0
name: '@reduxjs/toolkit'
version: 1.9.0
peerDependencies:
react: ^16.9.0 || ^17.0.0 || ^18
react-redux: ^7.2.1 || ^8.0.2
peerDependenciesMeta:
react:
optional: true
react-redux:
optional: true
dependencies:
immer: registry.npmjs.org/immer/9.0.16
react: registry.npmjs.org/react/18.2.0
react-redux: registry.npmjs.org/react-redux/8.0.5_cn3ejhfta5lq2dae4xucvtkwvu
redux: registry.npmjs.org/redux/4.2.0
redux-thunk: registry.npmjs.org/redux-thunk/2.4.2_redux@4.2.0
reselect: registry.npmjs.org/reselect/4.1.7
dev: false
registry.npmjs.org/@remix-run/router/1.0.3:
resolution: {integrity: sha512-ceuyTSs7PZ/tQqi19YZNBc5X7kj1f8p+4DIyrcIYFY9h+hd1OKm4RqtiWldR9eGEvIiJfsqwM4BsuCtRIuEw6Q==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@remix-run/router/-/router-1.0.3.tgz}
name: '@remix-run/router'
version: 1.0.3
engines: {node: '>=14'}
dev: false
registry.npmjs.org/@types/hoist-non-react-statics/3.3.1:
resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz}
name: '@types/hoist-non-react-statics'
version: 3.3.1
dependencies:
'@types/react': registry.npmjs.org/@types/react/18.0.25
hoist-non-react-statics: registry.npmjs.org/hoist-non-react-statics/3.3.2
dev: false
registry.npmjs.org/@types/parse-json/4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz}
name: '@types/parse-json'
version: 4.0.0
dev: false
registry.npmjs.org/@types/prop-types/15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz}
name: '@types/prop-types'
version: 15.7.5
registry.npmjs.org/@types/react-dom/18.0.9:
resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.9.tgz}
name: '@types/react-dom'
version: 18.0.9
dependencies:
'@types/react': registry.npmjs.org/@types/react/18.0.25
registry.npmjs.org/@types/react-is/17.0.3:
resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/react-is/-/react-is-17.0.3.tgz}
name: '@types/react-is'
version: 17.0.3
dependencies:
'@types/react': registry.npmjs.org/@types/react/18.0.25
dev: false
registry.npmjs.org/@types/react-redux/7.1.24:
resolution: {integrity: sha512-7FkurKcS1k0FHZEtdbbgN8Oc6b+stGSfZYjQGicofJ0j4U0qIn/jaSvnP2pLwZKiai3/17xqqxkkrxTgN8UNbQ==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.24.tgz}
name: '@types/react-redux'
version: 7.1.24
dependencies:
'@types/hoist-non-react-statics': registry.npmjs.org/@types/hoist-non-react-statics/3.3.1
'@types/react': registry.npmjs.org/@types/react/18.0.25
hoist-non-react-statics: registry.npmjs.org/hoist-non-react-statics/3.3.2
redux: registry.npmjs.org/redux/4.2.0
dev: false
registry.npmjs.org/@types/react-transition-group/4.4.5:
resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz}
name: '@types/react-transition-group'
version: 4.4.5
dependencies:
'@types/react': registry.npmjs.org/@types/react/18.0.25
dev: false
registry.npmjs.org/@types/react/18.0.25:
resolution: {integrity: sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/react/-/react-18.0.25.tgz}
name: '@types/react'
version: 18.0.25
dependencies:
'@types/prop-types': registry.npmjs.org/@types/prop-types/15.7.5
'@types/scheduler': registry.npmjs.org/@types/scheduler/0.16.2
csstype: registry.npmjs.org/csstype/3.1.1
registry.npmjs.org/@types/scheduler/0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz}
name: '@types/scheduler'
version: 0.16.2
registry.npmjs.org/@types/use-sync-external-store/0.0.3:
resolution: {integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz}
name: '@types/use-sync-external-store'
version: 0.0.3
dev: false
registry.npmjs.org/@vitejs/plugin-react/2.2.0_vite@3.2.4:
resolution: {integrity: sha512-FFpefhvExd1toVRlokZgxgy2JtnBOdp4ZDsq7ldCWaqGSGn9UhWMAVm/1lxPL14JfNS5yGz+s9yFrQY6shoStA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-2.2.0.tgz}
id: registry.npmjs.org/@vitejs/plugin-react/2.2.0
name: '@vitejs/plugin-react'
version: 2.2.0
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^3.0.0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.20.2
'@babel/plugin-transform-react-jsx': registry.npmjs.org/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.2
'@babel/plugin-transform-react-jsx-development': registry.npmjs.org/@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.2
'@babel/plugin-transform-react-jsx-self': registry.npmjs.org/@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.2
'@babel/plugin-transform-react-jsx-source': registry.npmjs.org/@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.2
magic-string: registry.npmjs.org/magic-string/0.26.7
react-refresh: registry.npmjs.org/react-refresh/0.14.0
vite: registry.npmjs.org/vite/3.2.4_sass@1.56.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/ansi-styles/3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz}
name: ansi-styles
version: 3.2.1
engines: {node: '>=4'}
dependencies:
color-convert: registry.npmjs.org/color-convert/1.9.3
registry.npmjs.org/anymatch/3.1.2:
resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz}
name: anymatch
version: 3.1.2
engines: {node: '>= 8'}
dependencies:
normalize-path: registry.npmjs.org/normalize-path/3.0.0
picomatch: registry.npmjs.org/picomatch/2.3.1
registry.npmjs.org/babel-plugin-macros/3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==, registry: https://skimdb.npmjs.com/registry, tarball: https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz}