-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
4431 lines (3826 loc) · 178 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.0.0":
"integrity" "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz"
"version" "7.21.4"
dependencies:
"@babel/highlight" "^7.18.6"
"@babel/helper-module-imports@^7.16.7":
"integrity" "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz"
"version" "7.21.4"
dependencies:
"@babel/types" "^7.21.4"
"@babel/helper-string-parser@^7.21.5":
"integrity" "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz"
"version" "7.21.5"
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
"integrity" "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"
"version" "7.19.1"
"@babel/highlight@^7.18.6":
"integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-validator-identifier" "^7.18.6"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/runtime@^7.0.0":
"integrity" "sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.3.tgz"
"version" "7.22.3"
dependencies:
"regenerator-runtime" "^0.13.11"
"@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.9", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7":
"integrity" "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz"
"version" "7.21.0"
dependencies:
"regenerator-runtime" "^0.13.11"
"@babel/types@^7.21.4":
"integrity" "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz"
"version" "7.21.5"
dependencies:
"@babel/helper-string-parser" "^7.21.5"
"@babel/helper-validator-identifier" "^7.19.1"
"to-fast-properties" "^2.0.0"
"@emotion/babel-plugin@^11.11.0":
"integrity" "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ=="
"resolved" "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz"
"version" "11.11.0"
dependencies:
"@babel/helper-module-imports" "^7.16.7"
"@babel/runtime" "^7.18.3"
"@emotion/hash" "^0.9.1"
"@emotion/memoize" "^0.8.1"
"@emotion/serialize" "^1.1.2"
"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"
"@emotion/cache@^11.10.8", "@emotion/cache@^11.11.0":
"integrity" "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ=="
"resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz"
"version" "11.11.0"
dependencies:
"@emotion/memoize" "^0.8.1"
"@emotion/sheet" "^1.2.2"
"@emotion/utils" "^1.2.1"
"@emotion/weak-memoize" "^0.3.1"
"stylis" "4.2.0"
"@emotion/hash@^0.8.0":
"integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz"
"version" "0.8.0"
"@emotion/hash@^0.9.1":
"integrity" "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz"
"version" "0.9.1"
"@emotion/is-prop-valid@^1.2.0", "@emotion/is-prop-valid@^1.2.1":
"integrity" "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw=="
"resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"@emotion/memoize" "^0.8.1"
"@emotion/memoize@^0.8.1":
"integrity" "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz"
"version" "0.8.1"
"@emotion/react@^11.11.0":
"integrity" "sha512-ZSK3ZJsNkwfjT3JpDAWJZlrGD81Z3ytNDsxw1LKq1o+xkmO5pnWfr6gmCC8gHEFf3nSSX/09YrG67jybNPxSUw=="
"resolved" "https://registry.npmjs.org/@emotion/react/-/react-11.11.0.tgz"
"version" "11.11.0"
dependencies:
"@babel/runtime" "^7.18.3"
"@emotion/babel-plugin" "^11.11.0"
"@emotion/cache" "^11.11.0"
"@emotion/serialize" "^1.1.2"
"@emotion/use-insertion-effect-with-fallbacks" "^1.0.1"
"@emotion/utils" "^1.2.1"
"@emotion/weak-memoize" "^0.3.1"
"hoist-non-react-statics" "^3.3.1"
"@emotion/serialize@^1.1.2":
"integrity" "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA=="
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"@emotion/hash" "^0.9.1"
"@emotion/memoize" "^0.8.1"
"@emotion/unitless" "^0.8.1"
"@emotion/utils" "^1.2.1"
"csstype" "^3.0.2"
"@emotion/sheet@^1.2.2":
"integrity" "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA=="
"resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz"
"version" "1.2.2"
"@emotion/styled@^11.11.0":
"integrity" "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng=="
"resolved" "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz"
"version" "11.11.0"
dependencies:
"@babel/runtime" "^7.18.3"
"@emotion/babel-plugin" "^11.11.0"
"@emotion/is-prop-valid" "^1.2.1"
"@emotion/serialize" "^1.1.2"
"@emotion/use-insertion-effect-with-fallbacks" "^1.0.1"
"@emotion/utils" "^1.2.1"
"@emotion/unitless@^0.8.1":
"integrity" "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ=="
"resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz"
"version" "0.8.1"
"@emotion/use-insertion-effect-with-fallbacks@^1.0.1":
"integrity" "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw=="
"resolved" "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz"
"version" "1.0.1"
"@emotion/utils@^1.2.1":
"integrity" "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg=="
"resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz"
"version" "1.2.1"
"@emotion/weak-memoize@^0.3.1":
"integrity" "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww=="
"resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz"
"version" "0.3.1"
"@eslint/eslintrc@^2.0.0":
"integrity" "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.5.1"
"globals" "^13.19.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.1.2"
"strip-json-comments" "^3.1.1"
"@eslint/[email protected]":
"integrity" "sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw=="
"resolved" "https://registry.npmjs.org/@eslint/js/-/js-8.35.0.tgz"
"version" "8.35.0"
"@hotjar/browser@^1.0.7":
"integrity" "sha512-OS6qRkidT7ACt+kSaYgHwEbOfUSiVCi9tVwmkq45KYAA+4wE0BrZO9Zwob9YJap17yY/yG6moc0vR0R47NJ0EA=="
"resolved" "https://registry.npmjs.org/@hotjar/browser/-/browser-1.0.7.tgz"
"version" "1.0.7"
"@humanwhocodes/config-array@^0.11.8":
"integrity" "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz"
"version" "0.11.8"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.5"
"@humanwhocodes/module-importer@^1.0.1":
"integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
"version" "1.0.1"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@jridgewell/gen-mapping@^0.3.2":
"integrity" "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/[email protected]":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
"@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13":
"integrity" "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
"version" "1.4.15"
"@jridgewell/[email protected]":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz"
"version" "0.3.18"
dependencies:
"@jridgewell/resolve-uri" "3.1.0"
"@jridgewell/sourcemap-codec" "1.4.14"
"@material-ui/core@^4.12.4":
"integrity" "sha512-tr7xekNlM9LjA6pagJmL8QCgZXaubWUwkJnoYcMKd4gw/t4XiyvnTkjdGrUVicyB2BsdaAv1tvow45bPM4sSwQ=="
"resolved" "https://registry.npmjs.org/@material-ui/core/-/core-4.12.4.tgz"
"version" "4.12.4"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/styles" "^4.11.5"
"@material-ui/system" "^4.12.2"
"@material-ui/types" "5.1.0"
"@material-ui/utils" "^4.11.3"
"@types/react-transition-group" "^4.2.0"
"clsx" "^1.0.4"
"hoist-non-react-statics" "^3.3.2"
"popper.js" "1.16.1-lts"
"prop-types" "^15.7.2"
"react-is" "^16.8.0 || ^17.0.0"
"react-transition-group" "^4.4.0"
"@material-ui/styles@^4.11.5":
"integrity" "sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA=="
"resolved" "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.5.tgz"
"version" "4.11.5"
dependencies:
"@babel/runtime" "^7.4.4"
"@emotion/hash" "^0.8.0"
"@material-ui/types" "5.1.0"
"@material-ui/utils" "^4.11.3"
"clsx" "^1.0.4"
"csstype" "^2.5.2"
"hoist-non-react-statics" "^3.3.2"
"jss" "^10.5.1"
"jss-plugin-camel-case" "^10.5.1"
"jss-plugin-default-unit" "^10.5.1"
"jss-plugin-global" "^10.5.1"
"jss-plugin-nested" "^10.5.1"
"jss-plugin-props-sort" "^10.5.1"
"jss-plugin-rule-value-function" "^10.5.1"
"jss-plugin-vendor-prefixer" "^10.5.1"
"prop-types" "^15.7.2"
"@material-ui/system@^4.12.2":
"integrity" "sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw=="
"resolved" "https://registry.npmjs.org/@material-ui/system/-/system-4.12.2.tgz"
"version" "4.12.2"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/utils" "^4.11.3"
"csstype" "^2.5.2"
"prop-types" "^15.7.2"
"@material-ui/[email protected]":
"integrity" "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A=="
"resolved" "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz"
"version" "5.1.0"
"@material-ui/utils@^4.11.3":
"integrity" "sha512-ZuQPV4rBK/V1j2dIkSSEcH5uT6AaHuKWFfotADHsC0wVL1NLd2WkFCm4ZZbX33iO4ydl6V0GPngKm8HZQ2oujg=="
"resolved" "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.3.tgz"
"version" "4.11.3"
dependencies:
"@babel/runtime" "^7.4.4"
"prop-types" "^15.7.2"
"react-is" "^16.8.0 || ^17.0.0"
"@mui/[email protected]":
"integrity" "sha512-I5e52A0Muv9Gaoy2GcqbYrQ6dpRyC2UXeA00brT3HuW0nF0E4fiTOIqdNTN+N5gyaYK0z3O6jtLt/97CCrIxVA=="
"resolved" "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.126.tgz"
"version" "5.0.0-alpha.126"
dependencies:
"@babel/runtime" "^7.21.0"
"@emotion/is-prop-valid" "^1.2.0"
"@mui/types" "^7.2.4"
"@mui/utils" "^5.12.0"
"@popperjs/core" "^2.11.7"
"clsx" "^1.2.1"
"prop-types" "^15.8.1"
"react-is" "^18.2.0"
"@mui/[email protected]":
"integrity" "sha512-ap+juKvt8R8n3cBqd/pGtZydQ4v2I/hgJKnvJRGjpSh3RvsvnDHO4rXov8MHQlH6VqpOekwgilFLGxMZjNTucA=="
"resolved" "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.0.tgz"
"version" "5.0.0-beta.0"
dependencies:
"@babel/runtime" "^7.21.0"
"@emotion/is-prop-valid" "^1.2.0"
"@mui/types" "^7.2.4"
"@mui/utils" "^5.12.3"
"@popperjs/core" "^2.11.7"
"clsx" "^1.2.1"
"prop-types" "^15.8.1"
"react-is" "^18.2.0"
"@mui/core-downloads-tracker@^5.12.1", "@mui/core-downloads-tracker@^5.13.0":
"integrity" "sha512-5nXz2k8Rv2ZjtQY6kXirJVyn2+ODaQuAJmXSJtLDUQDKWp3PFUj6j3bILqR0JGOs9R5ejgwz3crLKsl6GwjwkQ=="
"resolved" "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.13.0.tgz"
"version" "5.13.0"
"@mui/icons-material@^5.11.16":
"integrity" "sha512-oKkx9z9Kwg40NtcIajF9uOXhxiyTZrrm9nmIJ4UjkU2IdHpd4QVLbCc/5hZN/y0C6qzi2Zlxyr9TGddQx2vx2A=="
"resolved" "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.16.tgz"
"version" "5.11.16"
dependencies:
"@babel/runtime" "^7.21.0"
"@mui/joy@^5.0.0-alpha.79":
"integrity" "sha512-5XypYGYx+3MK7uNli7+WLOMzMtTX8maCAfAs1EuMcRY4tC60lI9OxzQLLs5furreysQCPOXd4Aa1SFtwjfwxdw=="
"resolved" "https://registry.npmjs.org/@mui/joy/-/joy-5.0.0-alpha.79.tgz"
"version" "5.0.0-alpha.79"
dependencies:
"@babel/runtime" "^7.21.0"
"@mui/base" "5.0.0-beta.0"
"@mui/core-downloads-tracker" "^5.13.0"
"@mui/system" "^5.12.3"
"@mui/types" "^7.2.4"
"@mui/utils" "^5.12.3"
"clsx" "^1.2.1"
"csstype" "^3.1.2"
"prop-types" "^15.8.1"
"react-is" "^18.2.0"
"@mui/lab@^5.0.0-alpha.126":
"integrity" "sha512-D+Q7MV06rn31g8ZgNcLxgsmh94PJYfyqXAcM3BokgMJ4u89QfwneSlaoHnQ9qitvWFyTz7Ic4HVMNT08FkRG7Q=="
"resolved" "https://registry.npmjs.org/@mui/lab/-/lab-5.0.0-alpha.127.tgz"
"version" "5.0.0-alpha.127"
dependencies:
"@babel/runtime" "^7.21.0"
"@mui/base" "5.0.0-alpha.126"
"@mui/system" "^5.12.1"
"@mui/types" "^7.2.4"
"@mui/utils" "^5.12.0"
"clsx" "^1.2.1"
"prop-types" "^15.8.1"
"react-is" "^18.2.0"
"@mui/material@^5.12.1":
"integrity" "sha512-m+G9J6+FzIMhRqKV2y30yONH97wX107z9EWgiNCeS1/+y1CnytFZNG1ENdOuaJo1NimCRnmB/iXPvoOaSo6dOg=="
"resolved" "https://registry.npmjs.org/@mui/material/-/material-5.12.1.tgz"
"version" "5.12.1"
dependencies:
"@babel/runtime" "^7.21.0"
"@mui/base" "5.0.0-alpha.126"
"@mui/core-downloads-tracker" "^5.12.1"
"@mui/system" "^5.12.1"
"@mui/types" "^7.2.4"
"@mui/utils" "^5.12.0"
"@types/react-transition-group" "^4.4.5"
"clsx" "^1.2.1"
"csstype" "^3.1.2"
"prop-types" "^15.8.1"
"react-is" "^18.2.0"
"react-transition-group" "^4.4.5"
"@mui/private-theming@^5.12.3":
"integrity" "sha512-o1e7Z1Bp27n4x2iUHhegV4/Jp6H3T6iBKHJdLivS5GbwsuAE/5l4SnZ+7+K+e5u9TuhwcAKZLkjvqzkDe8zqfA=="
"resolved" "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.12.3.tgz"
"version" "5.12.3"
dependencies:
"@babel/runtime" "^7.21.0"
"@mui/utils" "^5.12.3"
"prop-types" "^15.8.1"
"@mui/styled-engine@^5.12.3":
"integrity" "sha512-AhZtiRyT8Bjr7fufxE/mLS+QJ3LxwX1kghIcM2B2dvJzSSg9rnIuXDXM959QfUVIM3C8U4x3mgVoPFMQJvc4/g=="
"resolved" "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.12.3.tgz"
"version" "5.12.3"
dependencies:
"@babel/runtime" "^7.21.0"
"@emotion/cache" "^11.10.8"
"csstype" "^3.1.2"
"prop-types" "^15.8.1"
"@mui/system@^5.12.1", "@mui/system@^5.12.3":
"integrity" "sha512-JB/6sypHqeJCqwldWeQ1MKkijH829EcZAKKizxbU2MJdxGG5KSwZvTBa5D9qiJUA1hJFYYupjiuy9ZdJt6rV6w=="
"resolved" "https://registry.npmjs.org/@mui/system/-/system-5.12.3.tgz"
"version" "5.12.3"
dependencies:
"@babel/runtime" "^7.21.0"
"@mui/private-theming" "^5.12.3"
"@mui/styled-engine" "^5.12.3"
"@mui/types" "^7.2.4"
"@mui/utils" "^5.12.3"
"clsx" "^1.2.1"
"csstype" "^3.1.2"
"prop-types" "^15.8.1"
"@mui/types@^7.2.4":
"integrity" "sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA=="
"resolved" "https://registry.npmjs.org/@mui/types/-/types-7.2.4.tgz"
"version" "7.2.4"
"@mui/utils@^5.11.13", "@mui/utils@^5.12.0", "@mui/utils@^5.12.3":
"integrity" "sha512-D/Z4Ub3MRl7HiUccid7sQYclTr24TqUAQFFlxHQF8FR177BrCTQ0JJZom7EqYjZCdXhwnSkOj2ph685MSKNtIA=="
"resolved" "https://registry.npmjs.org/@mui/utils/-/utils-5.12.3.tgz"
"version" "5.12.3"
dependencies:
"@babel/runtime" "^7.21.0"
"@types/prop-types" "^15.7.5"
"@types/react-is" "^16.7.1 || ^17.0.0"
"prop-types" "^15.8.1"
"react-is" "^18.2.0"
"@mui/x-data-grid@^6.2.1":
"integrity" "sha512-vFobFeFJslc4JRXark5SUFIzh/hwpyB8UENqUE3m0CbqKoRf4so2nkvaiK9TPsVIJbAuF6g1xyS0IhvMU2mzWg=="
"resolved" "https://registry.npmjs.org/@mui/x-data-grid/-/x-data-grid-6.2.1.tgz"
"version" "6.2.1"
dependencies:
"@babel/runtime" "^7.21.0"
"@mui/utils" "^5.11.13"
"clsx" "^1.2.1"
"prop-types" "^15.8.1"
"reselect" "^4.1.7"
"@next/bundle-analyzer@^13.4.4":
"integrity" "sha512-OxdqGfzElMjcLDw3XkUTqpEjyB/R2n3sOjiWuOGm414j5hAD2AIcXWv4q6FTN9rERgojrkw+g3z5yeLZgJ3YKg=="
"resolved" "https://registry.npmjs.org/@next/bundle-analyzer/-/bundle-analyzer-13.4.4.tgz"
"version" "13.4.4"
dependencies:
"webpack-bundle-analyzer" "4.7.0"
"@next/[email protected]":
"integrity" "sha512-SG/gKH6eij4vwQy87b/3mbpQ1X3x2vUdnpwq6/qL2IQWjtq58EY/UuNAp9CoEZoC9sI4L9AD1r+73Z9r4d3uug=="
"resolved" "https://registry.npmjs.org/@next/env/-/env-13.4.5.tgz"
"version" "13.4.5"
"@next/[email protected]":
"integrity" "sha512-r0i5rcO6SMAZtqiGarUVMr3k256X0R0j6pEkKg4PxqUW+hG0qgMxRVAJsuoRG5OBFkCOlSfWZJ0mP9fQdCcyNg=="
"resolved" "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.2.1.tgz"
"version" "13.2.1"
dependencies:
"glob" "7.1.7"
"@next/[email protected]":
"integrity" "sha512-XvTzi2ASUN5bECFIAAcBiSoDb0xsq+KLj4F0bof4d4rdc+FgOqLvseGQaOXwVi1TIh5bHa7o4b6droSJMO5+2g=="
"resolved" "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.5.tgz"
"version" "13.4.5"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@pkgr/utils@^2.3.1":
"integrity" "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw=="
"resolved" "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz"
"version" "2.3.1"
dependencies:
"cross-spawn" "^7.0.3"
"is-glob" "^4.0.3"
"open" "^8.4.0"
"picocolors" "^1.0.0"
"tiny-glob" "^0.2.9"
"tslib" "^2.4.0"
"@polka/url@^1.0.0-next.20":
"integrity" "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g=="
"resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz"
"version" "1.0.0-next.21"
"@popperjs/core@^2.11.7":
"integrity" "sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw=="
"resolved" "https://registry.npmjs.org/@popperjs/core/-/core-2.11.7.tgz"
"version" "2.11.7"
"@rollup/[email protected]":
"integrity" "sha512-0w0wyykzdyRRPHOb0cQt14mIBLujfAv6GgP6g8nvg/iBxEm112t3YPPq+Buqe2+imvElTka+bjNlJ/gB56TD8g=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-24.0.0.tgz"
"version" "24.0.0"
dependencies:
"@rollup/pluginutils" "^5.0.1"
"commondir" "^1.0.1"
"estree-walker" "^2.0.2"
"glob" "^8.0.3"
"is-reference" "1.2.1"
"magic-string" "^0.27.0"
"@rollup/pluginutils@^5.0.1":
"integrity" "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA=="
"resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz"
"version" "5.0.2"
dependencies:
"@types/estree" "^1.0.0"
"estree-walker" "^2.0.2"
"picomatch" "^2.3.1"
"@rushstack/eslint-patch@^1.1.3":
"integrity" "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg=="
"resolved" "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz"
"version" "1.2.0"
"@sentry-internal/[email protected]":
"integrity" "sha512-a4H4rvVdz0XDGgNfRqc7zg6rMt2P1P05xBmgfIfztYy94Vciw1QMdboNiT7einr8ra8wogdEaK4Pe2AzYAPBJQ=="
"resolved" "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@sentry/core" "7.53.1"
"@sentry/types" "7.53.1"
"@sentry/utils" "7.53.1"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-1zas2R6riJaj0k7FoeieCW0SuC7UyKaBGA6jEG2LsgIqyD7IDOlF3BPZ4Yt08GFav0ImpyhGn5Vbrq5JLbeQdw=="
"resolved" "https://registry.npmjs.org/@sentry/browser/-/browser-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@sentry-internal/tracing" "7.53.1"
"@sentry/core" "7.53.1"
"@sentry/replay" "7.53.1"
"@sentry/types" "7.53.1"
"@sentry/utils" "7.53.1"
"tslib" "^1.9.3"
"@sentry/cli@^1.74.6":
"integrity" "sha512-CG0CKH4VCKWzEaegouWfCLQt9SFN+AieFESCatJ7zSuJmzF05ywpMusjxqRul6lMwfUhRKjGKOzcRJ1jLsfTBw=="
"resolved" "https://registry.npmjs.org/@sentry/cli/-/cli-1.75.2.tgz"
"version" "1.75.2"
dependencies:
"https-proxy-agent" "^5.0.0"
"mkdirp" "^0.5.5"
"node-fetch" "^2.6.7"
"progress" "^2.0.3"
"proxy-from-env" "^1.1.0"
"which" "^2.0.2"
"@sentry/[email protected]":
"integrity" "sha512-DAH8IJNORJJ7kQLqsZuhMkN6cwJjXzFuuUoZor7IIDHIHjtl51W+2F3Stg3+I3ZoKDfJfUNKqhipk2WZjG0FBg=="
"resolved" "https://registry.npmjs.org/@sentry/core/-/core-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@sentry/types" "7.53.1"
"@sentry/utils" "7.53.1"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-Y2Sq+nkYG2FFYWZ3NLDUdFdJQEAfSNL95MeoIAjpAioHmPBOHXoRwUzAMlaOR/2VibaKwGEIGwsHofj7RwtjrA=="
"resolved" "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@sentry/types" "7.53.1"
"@sentry/utils" "7.53.1"
"localforage" "^1.8.1"
"tslib" "^1.9.3"
"@sentry/nextjs@^7.53.1":
"integrity" "sha512-b8wQwk0NPNsRKHc9wCik0suXrfN/HYWIKYWOCQkdSm01DnPD/J5ROBHzo4XfuaI+pwAIgboSrKIr3e2DjUnMRw=="
"resolved" "https://registry.npmjs.org/@sentry/nextjs/-/nextjs-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@rollup/plugin-commonjs" "24.0.0"
"@sentry/core" "7.53.1"
"@sentry/integrations" "7.53.1"
"@sentry/node" "7.53.1"
"@sentry/react" "7.53.1"
"@sentry/types" "7.53.1"
"@sentry/utils" "7.53.1"
"@sentry/webpack-plugin" "1.20.0"
"chalk" "3.0.0"
"rollup" "2.78.0"
"stacktrace-parser" "^0.1.10"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-B4ax8sRd54xj4ad+4eY2EOKNt0Mh1NjuLW1zUKS8HW3h0bmuaDFzGuhEVvEY5H4SaV6tZKj1c0dvnMnyUbYkhA=="
"resolved" "https://registry.npmjs.org/@sentry/node/-/node-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@sentry-internal/tracing" "7.53.1"
"@sentry/core" "7.53.1"
"@sentry/types" "7.53.1"
"@sentry/utils" "7.53.1"
"cookie" "^0.4.1"
"https-proxy-agent" "^5.0.0"
"lru_map" "^0.3.3"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-eEOY/peBepSD/nhPn4SU77aYdjQfAI1svOqpG4sbpjaGZU1P6L7+IIGmip8l2T68oPEeKDaiH9Qy/3uxu55B/Q=="
"resolved" "https://registry.npmjs.org/@sentry/react/-/react-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@sentry/browser" "7.53.1"
"@sentry/types" "7.53.1"
"@sentry/utils" "7.53.1"
"hoist-non-react-statics" "^3.3.2"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-5He5JLJiYLeWtXHC53z2ZzfbgAedafbHNZVS4+MBCOtydCk7cnuyJ0gGV6Rfxej/lZSNXZxOdW7HeMhzBtZCxw=="
"resolved" "https://registry.npmjs.org/@sentry/replay/-/replay-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@sentry/core" "7.53.1"
"@sentry/types" "7.53.1"
"@sentry/utils" "7.53.1"
"@sentry/[email protected]":
"integrity" "sha512-/ijchRIu+jz3+j/zY+7KRPfLSCY14fTx5xujjbOdmEKjmIHQmwPBdszcQm40uwofrR8taV4hbt5MFN+WnjCkCw=="
"resolved" "https://registry.npmjs.org/@sentry/types/-/types-7.53.1.tgz"
"version" "7.53.1"
"@sentry/[email protected]":
"integrity" "sha512-DKJA1LSUOEv4KOR828MzVuLh+drjeAgzyKgN063OEKmnirgjgRgNNS8wUgwpG0Tn2k6ANZGCwrdfzPeSBxshKg=="
"resolved" "https://registry.npmjs.org/@sentry/utils/-/utils-7.53.1.tgz"
"version" "7.53.1"
dependencies:
"@sentry/types" "7.53.1"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-Ssj1mJVFsfU6vMCOM2d+h+KQR7QHSfeIP16t4l20Uq/neqWXZUQ2yvQfe4S3BjdbJXz/X4Rw8Hfy1Sd0ocunYw=="
"resolved" "https://registry.npmjs.org/@sentry/webpack-plugin/-/webpack-plugin-1.20.0.tgz"
"version" "1.20.0"
dependencies:
"@sentry/cli" "^1.74.6"
"webpack-sources" "^2.0.0 || ^3.0.0"
"@supabase/auth-helpers-nextjs@^0.6.1":
"integrity" "sha512-ffDAR4pW2Cosj/CuuGRAhzOFfHtqzdgax7zqRGGyq334gxxPplsmJFGaLPRJ3Z/4mTSIJHyFd6LYdHMN0a+5Bw=="
"resolved" "https://registry.npmjs.org/@supabase/auth-helpers-nextjs/-/auth-helpers-nextjs-0.6.1.tgz"
"version" "0.6.1"
dependencies:
"@supabase/auth-helpers-shared" "0.3.4"
"@supabase/[email protected]":
"integrity" "sha512-8I3D0SPHHexkFTSfPg0nZgJSVazWoB3tZDpT6IjRv6w89vDMUzO99Lit4H9anVLF4teW8c/nJJxawDNbDlgbgg=="
"resolved" "https://registry.npmjs.org/@supabase/auth-helpers-shared/-/auth-helpers-shared-0.3.4.tgz"
"version" "0.3.4"
dependencies:
"jose" "^4.14.0"
"@supabase/functions-js@^2.1.0":
"integrity" "sha512-bIR1Puae6W+1/MzPfYBWOG/SCWGo4B5CB7c0ZZksvliNEAzhxNBJ0UFKYINcGdGtxG8ZC+1xr3utWpNZNwnoRw=="
"resolved" "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.1.1.tgz"
"version" "2.1.1"
dependencies:
"cross-fetch" "^3.1.5"
"@supabase/gotrue-js@^2.22.0":
"integrity" "sha512-hwM8dFzGqqU/xqv9coxIpujSU++bs2Vw6EiZZSeUdGZkeKQ07YXFlNG56aQKkwnpHRIQjHSgZ2bAoVX1n9Owbw=="
"resolved" "https://registry.npmjs.org/@supabase/gotrue-js/-/gotrue-js-2.22.1.tgz"
"version" "2.22.1"
dependencies:
"cross-fetch" "^3.1.5"
"@supabase/postgrest-js@^1.1.1":
"integrity" "sha512-YaU1HBE43Ba+FGmnXuvK+xYeHylkDKd04PYeKDUCoE2bUHoxSDqnjHbOwmLjnusGZi3X1MrFeUH1Wwb4bHYyIg=="
"resolved" "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"cross-fetch" "^3.1.5"
"@supabase/realtime-js@^2.7.2":
"integrity" "sha512-Fi6xAl5PUkqnjl3wo4rdcQIbMG3+yTRX1aUZe/yfvTG84RMvmCXJ1yN6MmafVLeZpU1xkaz5Vx4L0tnHcLiy6w=="
"resolved" "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.7.2.tgz"
"version" "2.7.2"
dependencies:
"@types/phoenix" "^1.5.4"
"@types/websocket" "^1.0.3"
"websocket" "^1.0.34"
"@supabase/storage-js@^2.5.1":
"integrity" "sha512-nkR0fQA9ScAtIKA3vNoPEqbZv1k5B5HVRYEvRWdlP6mUpFphM9TwPL2jZ/ztNGMTG5xT6SrHr+H7Ykz8qzbhjw=="
"resolved" "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.5.1.tgz"
"version" "2.5.1"
dependencies:
"cross-fetch" "^3.1.5"
"@supabase/supabase-js@^2.20.0":
"integrity" "sha512-6sNX4WEaVBbmOS1K2U3PcpAhp0FcjVo1FRSEoj4N+NZ6DIokX+yut8IBhF176pg5kFCdFIL2wyNhf3SltREmWw=="
"resolved" "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.20.0.tgz"
"version" "2.20.0"
dependencies:
"@supabase/functions-js" "^2.1.0"
"@supabase/gotrue-js" "^2.22.0"
"@supabase/postgrest-js" "^1.1.1"
"@supabase/realtime-js" "^2.7.2"
"@supabase/storage-js" "^2.5.1"
"cross-fetch" "^3.1.5"
"@swc/[email protected]":
"integrity" "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg=="
"resolved" "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz"
"version" "0.5.1"
dependencies:
"tslib" "^2.4.0"
"@tailwindcss/aspect-ratio@^0.4.2":
"integrity" "sha512-8QPrypskfBa7QIMuKHg2TA7BqES6vhBrDLOv8Unb6FcFyd3TjKbc6lcmb9UPQHxfl24sXoJ41ux/H7qQQvfaSQ=="
"resolved" "https://registry.npmjs.org/@tailwindcss/aspect-ratio/-/aspect-ratio-0.4.2.tgz"
"version" "0.4.2"
"@tailwindcss/typography@^0.5.9":
"integrity" "sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg=="
"resolved" "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.9.tgz"
"version" "0.5.9"
dependencies:
"lodash.castarray" "^4.4.0"
"lodash.isplainobject" "^4.0.6"
"lodash.merge" "^4.6.2"
"postcss-selector-parser" "6.0.10"
"@types/domutils@*":
"integrity" "sha512-w542nRQ0vpXQjLYP52LKqrugQtUq580dEDiDIyZ6IBmV8a3LXjGVNxfj/jUQxS0kDsbZAWsSxQOcTfVX3HRdwg=="
"resolved" "https://registry.npmjs.org/@types/domutils/-/domutils-1.7.4.tgz"
"version" "1.7.4"
dependencies:
"domhandler" "^2.4.0"
"@types/estree@*", "@types/estree@^1.0.0":
"integrity" "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz"
"version" "1.0.1"
"@types/glob@^7.1.1":
"integrity" "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="
"resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
"@types/history@^4.7.11":
"integrity" "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA=="
"resolved" "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz"
"version" "4.7.11"
"@types/htmlparser2@*":
"integrity" "sha512-XA74aD+acytofnZic9n83Rxy/IZ259299bYPx5SEyx7uymPi79lRyKDkhJlsuCaPHB7rEoTEhRN4Vm2G5WmHHg=="
"resolved" "https://registry.npmjs.org/@types/htmlparser2/-/htmlparser2-3.10.3.tgz"
"version" "3.10.3"
dependencies:
"@types/domutils" "*"
"@types/node" "*"
"domhandler" "^2.4.0"
"@types/json5@^0.0.29":
"integrity" "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
"resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/lodash@^4.14.195":
"integrity" "sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg=="
"resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz"
"version" "4.14.195"
"@types/minimatch@*":
"integrity" "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA=="
"resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz"
"version" "5.1.2"
"@types/node@*", "@types/[email protected]":
"integrity" "sha512-1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-18.14.2.tgz"
"version" "18.14.2"
"@types/numeral@^2.0.2":
"integrity" "sha512-A8F30k2gYJ/6e07spSCPpkuZu79LCnkPTvqmIWQzNGcrzwFKpVOydG41lNt5wZXjSI149qjyzC2L1+F2PD/NUA=="
"resolved" "https://registry.npmjs.org/@types/numeral/-/numeral-2.0.2.tgz"
"version" "2.0.2"
"@types/parse-json@^4.0.0":
"integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
"resolved" "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz"
"version" "4.0.0"
"@types/phoenix@^1.5.4":
"integrity" "sha512-e7jZ6I9uyRGsg7MNwQcarmBvRlbGb9DibbocE9crVnxqsy6C23RMxLWbJ2CQ3vgCW7taoL1L+F02EcjA6ld7XA=="
"resolved" "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.5.6.tgz"
"version" "1.5.6"
"@types/prop-types@*", "@types/prop-types@^15.7.5":
"integrity" "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"
"version" "15.7.5"
"@types/quill@^1.3.10":
"integrity" "sha512-IhW3fPW+bkt9MLNlycw8u8fWb7oO7W5URC9MfZYHBlA24rex9rs23D5DETChu1zvgVdc5ka64ICjJOgQMr6Shw=="
"resolved" "https://registry.npmjs.org/@types/quill/-/quill-1.3.10.tgz"
"version" "1.3.10"
dependencies:
"parchment" "^1.1.2"
"@types/[email protected]":
"integrity" "sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw=="
"resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.11.tgz"
"version" "18.0.11"
dependencies:
"@types/react" "*"
"@types/react-html-parser@^2.0.2":
"integrity" "sha512-avS2QzBMCUTGO2+gi3rWG6WreuU8zhf4b5CbS11itYlvLbwt5wmxBqQN4/f2z/JR/6Kvdt8ohAxhztb8XQHdPQ=="
"resolved" "https://registry.npmjs.org/@types/react-html-parser/-/react-html-parser-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"@types/htmlparser2" "*"
"@types/react" "*"
"@types/react-is@^16.7.1 || ^17.0.0":
"integrity" "sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw=="
"resolved" "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.3.tgz"
"version" "17.0.3"
dependencies:
"@types/react" "*"
"@types/react-router@^5.1.20":
"integrity" "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q=="
"resolved" "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz"
"version" "5.1.20"
dependencies:
"@types/history" "^4.7.11"
"@types/react" "*"
"@types/react-transition-group@^4.2.0", "@types/react-transition-group@^4.4.5":
"integrity" "sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA=="
"resolved" "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz"
"version" "4.4.5"
dependencies:
"@types/react" "*"
"@types/react-window@^1.8.5":
"integrity" "sha512-V9q3CvhC9Jk9bWBOysPGaWy/Z0lxYcTXLtLipkt2cnRj1JOSFNF7wqGpkScSXMgBwC+fnVRg/7shwgddBG5ICw=="
"resolved" "https://registry.npmjs.org/@types/react-window/-/react-window-1.8.5.tgz"
"version" "1.8.5"
dependencies:
"@types/react" "*"
"@types/react@*", "@types/[email protected]":
"integrity" "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz"
"version" "18.0.28"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"
"@types/scheduler@*":
"integrity" "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ=="
"resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz"
"version" "0.16.3"
"@types/websocket@^1.0.3":
"integrity" "sha512-NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ=="
"resolved" "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.5.tgz"
"version" "1.0.5"
dependencies:
"@types/node" "*"
"@typescript-eslint/parser@^5.42.0":
"integrity" "sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.58.0.tgz"
"version" "5.58.0"
dependencies:
"@typescript-eslint/scope-manager" "5.58.0"
"@typescript-eslint/types" "5.58.0"
"@typescript-eslint/typescript-estree" "5.58.0"
"debug" "^4.3.4"
"@typescript-eslint/[email protected]":
"integrity" "sha512-b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.58.0.tgz"
"version" "5.58.0"
dependencies:
"@typescript-eslint/types" "5.58.0"
"@typescript-eslint/visitor-keys" "5.58.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.58.0.tgz"
"version" "5.58.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-cRACvGTodA+UxnYM2uwA2KCwRL7VAzo45syNysqlMyNyjw0Z35Icc9ihPJZjIYuA5bXJYiJ2YGUB59BqlOZT1Q=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.58.0.tgz"
"version" "5.58.0"
dependencies:
"@typescript-eslint/types" "5.58.0"
"@typescript-eslint/visitor-keys" "5.58.0"
"debug" "^4.3.4"
"globby" "^11.1.0"
"is-glob" "^4.0.3"
"semver" "^7.3.7"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.58.0.tgz"
"version" "5.58.0"
dependencies:
"@typescript-eslint/types" "5.58.0"
"eslint-visitor-keys" "^3.3.0"
"@wojtekmaj/async-array-utils@^1.7.0":
"integrity" "sha512-fBaEyQxIiD8Pgsdmn3ws2kfF9V2J/C3O3VxUhTM4hqgX0frw6TyJN+LqW+qn/YdADy9JkkmTNWuzF7cPpbP0LQ=="
"resolved" "https://registry.npmjs.org/@wojtekmaj/async-array-utils/-/async-array-utils-1.7.0.tgz"
"version" "1.7.0"
"acorn-jsx@^5.3.2":
"integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn-walk@^8.0.0":
"integrity" "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA=="
"resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz"
"version" "8.2.0"
"acorn@^8.0.4", "acorn@^8.8.0":
"integrity" "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz"
"version" "8.8.2"
"agent-base@6":
"integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"debug" "4"
"ajv@^6.10.0", "ajv@^6.12.4":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"