-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
6831 lines (6831 loc) · 265 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "quipodb",
"version": "0.0.1-beta.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "quipodb",
"version": "0.0.1-beta.0",
"license": "ISC",
"workspaces": [
"/packages/*"
],
"dependencies": {
"@firebase/firestore": "^3.6.0",
"@hapi/hapi": "^20.2.2",
"axios": "^1.1.3",
"better-sqlite3": "^7.6.2",
"bson": "^4.7.0",
"firebase": "^9.11.0",
"firebase-admin": "^11.0.1",
"fs-extra": "^10.1.0",
"is-what": "^4.1.7",
"knex": "^2.3.0",
"lodash": "^4.17.21",
"merge-anything": "^5.0.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.2",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.3",
"typescript": "^4.8.4"
}
},
"node_modules/@babel/parser": {
"version": "7.19.6",
"resolved": "http://localhost:4873/@babel%2fparser/-/parser-7.19.6.tgz",
"integrity": "sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==",
"optional": true,
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@fastify/busboy": {
"version": "1.1.0",
"resolved": "http://localhost:4873/@fastify%2fbusboy/-/busboy-1.1.0.tgz",
"integrity": "sha512-Fv854f94v0CzIDllbY3i/0NJPNBRNLDawf3BTYVGCe9VrIIs3Wi7AFx24F9NzCxdf0wyx/x0Q9kEVnvDOPnlxA==",
"dependencies": {
"text-decoding": "^1.0.0"
},
"engines": {
"node": ">=10.17.0"
}
},
"node_modules/@firebase/analytics": {
"version": "0.8.3",
"resolved": "http://localhost:4873/@firebase%2fanalytics/-/analytics-0.8.3.tgz",
"integrity": "sha512-viGhc57JW9zHp/0JKpLBUthdpOrEjbPETQFz8oNfaNma+cHA6FtIrtg4Sla52DgqatbATcE9aIDBiPCGrCtNjw==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/installations": "0.5.15",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/analytics-compat": {
"version": "0.1.16",
"resolved": "http://localhost:4873/@firebase%2fanalytics-compat/-/analytics-compat-0.1.16.tgz",
"integrity": "sha512-mDAhE33WiyCrqSQZvzyZtQCCdf4ipn5tsEpTbIUruk7MbThQ1EbNAbPBiEk9NDLD3sUyLABZGFctvym/hc8H+w==",
"dependencies": {
"@firebase/analytics": "0.8.3",
"@firebase/analytics-types": "0.7.0",
"@firebase/component": "0.5.20",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/analytics-types": {
"version": "0.7.0",
"resolved": "http://localhost:4873/@firebase%2fanalytics-types/-/analytics-types-0.7.0.tgz",
"integrity": "sha512-DNE2Waiwy5+zZnCfintkDtBfaW6MjIG883474v6Z0K1XZIvl76cLND4iv0YUb48leyF+PJK1KO2XrgHb/KpmhQ=="
},
"node_modules/@firebase/app": {
"version": "0.8.2",
"resolved": "http://localhost:4873/@firebase%2fapp/-/app-0.8.2.tgz",
"integrity": "sha512-ByNDCe8h9O/szO3XVTrS484MtqBOKriVaNCQC7Y7KgZSaiA0OOWmIY5vwi63mBTYetqMNN5VGiG/6ZSmGIZyoQ==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"idb": "7.0.1",
"tslib": "^2.1.0"
}
},
"node_modules/@firebase/app-check": {
"version": "0.5.15",
"resolved": "http://localhost:4873/@firebase%2fapp-check/-/app-check-0.5.15.tgz",
"integrity": "sha512-ifQalGXkXMwGR3F8Glmo1XtDg0UjkwCmI/ff05mxnKGMfs5ZDyw8DikQfna//a/KdYuOBqxlBwS2BhHiobqUUg==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/app-check-compat": {
"version": "0.2.15",
"resolved": "http://localhost:4873/@firebase%2fapp-check-compat/-/app-check-compat-0.2.15.tgz",
"integrity": "sha512-EgD1WEFwwq7aP7DxPSYuUpMt8eAhClA57976D3BaHDbH/IXEuw0DfaeT0LtBb+xJD7J8uxy+YKpudCC8gzUu8g==",
"dependencies": {
"@firebase/app-check": "0.5.15",
"@firebase/app-check-types": "0.4.0",
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/app-check-interop-types": {
"version": "0.1.0",
"resolved": "http://localhost:4873/@firebase%2fapp-check-interop-types/-/app-check-interop-types-0.1.0.tgz",
"integrity": "sha512-uZfn9s4uuRsaX5Lwx+gFP3B6YsyOKUE+Rqa6z9ojT4VSRAsZFko9FRn6OxQUA1z5t5d08fY4pf+/+Dkd5wbdbA=="
},
"node_modules/@firebase/app-check-types": {
"version": "0.4.0",
"resolved": "http://localhost:4873/@firebase%2fapp-check-types/-/app-check-types-0.4.0.tgz",
"integrity": "sha512-SsWafqMABIOu7zLgWbmwvHGOeQQVQlwm42kwwubsmfLmL4Sf5uGpBfDhQ0CAkpi7bkJ/NwNFKafNDL9prRNP0Q=="
},
"node_modules/@firebase/app-compat": {
"version": "0.1.37",
"resolved": "http://localhost:4873/@firebase%2fapp-compat/-/app-compat-0.1.37.tgz",
"integrity": "sha512-doTKYGlVc8ZiQNOl66rpkU/YItRyOxCgMp4YWThXkPM4T/pTi4a9IMCe8K88gVNeYWd8sKW4vSnxjcOG5hQXEA==",
"dependencies": {
"@firebase/app": "0.8.2",
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
}
},
"node_modules/@firebase/app-types": {
"version": "0.8.0",
"resolved": "http://localhost:4873/@firebase%2fapp-types/-/app-types-0.8.0.tgz",
"integrity": "sha512-Lec3VVquUwXPn2UReGSsfTxuMBVRmzGIwA/CJnF0LQuPgv9kOmXk9mVqsDMfHxHtqjai0n6wWHR2TqjdVV/bYA=="
},
"node_modules/@firebase/auth": {
"version": "0.20.10",
"resolved": "http://localhost:4873/@firebase%2fauth/-/auth-0.20.10.tgz",
"integrity": "sha512-uAZypmVv/4nijaPVtR/ipjKBmSDPLQ7sNScLHs2DVhdvCklgUUF5+zsEdPlMfKDIfmVQHFwHbUgeKyXDYSRMwQ==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"node-fetch": "2.6.7",
"selenium-webdriver": "4.1.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/auth-compat": {
"version": "0.2.23",
"resolved": "http://localhost:4873/@firebase%2fauth-compat/-/auth-compat-0.2.23.tgz",
"integrity": "sha512-r9YEXaL7YKoFOWHRvVoQ6d5klP+hkSsAtt21UIvP3/BxDDU+yLXN5vVvFHr38apuUeMGN34M7zkY6SihnLutIQ==",
"dependencies": {
"@firebase/auth": "0.20.10",
"@firebase/auth-types": "0.11.0",
"@firebase/component": "0.5.20",
"@firebase/util": "1.7.2",
"node-fetch": "2.6.7",
"selenium-webdriver": "4.1.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/auth-interop-types": {
"version": "0.1.6",
"resolved": "http://localhost:4873/@firebase%2fauth-interop-types/-/auth-interop-types-0.1.6.tgz",
"integrity": "sha512-etIi92fW3CctsmR9e3sYM3Uqnoq861M0Id9mdOPF6PWIg38BXL5k4upCNBggGUpLIS0H1grMOvy/wn1xymwe2g==",
"peerDependencies": {
"@firebase/app-types": "0.x",
"@firebase/util": "1.x"
}
},
"node_modules/@firebase/auth-types": {
"version": "0.11.0",
"resolved": "http://localhost:4873/@firebase%2fauth-types/-/auth-types-0.11.0.tgz",
"integrity": "sha512-q7Bt6cx+ySj9elQHTsKulwk3+qDezhzRBFC9zlQ1BjgMueUOnGMcvqmU0zuKlQ4RhLSH7MNAdBV2znVaoN3Vxw==",
"peerDependencies": {
"@firebase/app-types": "0.x",
"@firebase/util": "1.x"
}
},
"node_modules/@firebase/component": {
"version": "0.5.20",
"resolved": "http://localhost:4873/@firebase%2fcomponent/-/component-0.5.20.tgz",
"integrity": "sha512-wP51tQBlPFprfAWxWjzC/56hG4APhl43jFsgwuqCl3bhVbiKcr278QbrbGNmIXDeGKo4sGZLAnH9whl2apeCmA==",
"dependencies": {
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
}
},
"node_modules/@firebase/database": {
"version": "0.13.9",
"resolved": "http://localhost:4873/@firebase%2fdatabase/-/database-0.13.9.tgz",
"integrity": "sha512-raQEBgQQybaEoMloJL8wWHQywGQ9mF2VbitvHydsbSNn+KL/xRDjXeQZPuuSbRjkYV6mR8jvQB7gpnzQQNE8Qg==",
"dependencies": {
"@firebase/auth-interop-types": "0.1.6",
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"faye-websocket": "0.11.4",
"tslib": "^2.1.0"
}
},
"node_modules/@firebase/database-compat": {
"version": "0.2.9",
"resolved": "http://localhost:4873/@firebase%2fdatabase-compat/-/database-compat-0.2.9.tgz",
"integrity": "sha512-zzyFM3+jW/qYtHojiQirHXGXYyElbqVngEEn/i2gXoSzcK0Y2AL5oHAqGYXLaaW0+t4Zwnssh3HnQJM8C1D0fw==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/database": "0.13.9",
"@firebase/database-types": "0.9.16",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
}
},
"node_modules/@firebase/database-types": {
"version": "0.9.16",
"resolved": "http://localhost:4873/@firebase%2fdatabase-types/-/database-types-0.9.16.tgz",
"integrity": "sha512-dK/uFgHisrVijSoHf9RLJ7NwvlOul2rO/z9ufOSbGd8/TqFVASXz+19mynhDIoSEnyQtJC/NTyBzSPfjz0w61w==",
"dependencies": {
"@firebase/app-types": "0.8.0",
"@firebase/util": "1.7.2"
}
},
"node_modules/@firebase/firestore": {
"version": "3.7.1",
"resolved": "http://localhost:4873/@firebase%2ffirestore/-/firestore-3.7.1.tgz",
"integrity": "sha512-sDZ79cUf4cwCyRzN74zODgaeUvyt0lGA8YwaasVVqojgznwMG/bIz+/Tny4ZEnLZFrlniCqt2tStWsiC6s3u7g==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"@firebase/webchannel-wrapper": "0.8.0",
"@grpc/grpc-js": "^1.3.2",
"@grpc/proto-loader": "^0.6.13",
"node-fetch": "2.6.7",
"tslib": "^2.1.0"
},
"engines": {
"node": ">=10.10.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/firestore-compat": {
"version": "0.2.1",
"resolved": "http://localhost:4873/@firebase%2ffirestore-compat/-/firestore-compat-0.2.1.tgz",
"integrity": "sha512-XiiTpmUfyZ6QU3Dw9BCT4T+KPvqzada1GsUNX49HmriWHpIn3jTAjsagkigRAnmNDlxS3ki6Yzg9Cs60tpD0tw==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/firestore": "3.7.1",
"@firebase/firestore-types": "2.5.0",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/firestore-types": {
"version": "2.5.0",
"resolved": "http://localhost:4873/@firebase%2ffirestore-types/-/firestore-types-2.5.0.tgz",
"integrity": "sha512-I6c2m1zUhZ5SH0cWPmINabDyH5w0PPFHk2UHsjBpKdZllzJZ2TwTkXbDtpHUZNmnc/zAa0WNMNMvcvbb/xJLKA==",
"peerDependencies": {
"@firebase/app-types": "0.x",
"@firebase/util": "1.x"
}
},
"node_modules/@firebase/functions": {
"version": "0.8.7",
"resolved": "http://localhost:4873/@firebase%2ffunctions/-/functions-0.8.7.tgz",
"integrity": "sha512-JHSKdAOzlFJ9NdKoOaq4x6S1q6B3GmYZDg13KIDsE6BC0E9o/eWxOWOjSFJRCP/lpfFwa0rYBRayfUvZxW3BLw==",
"dependencies": {
"@firebase/app-check-interop-types": "0.1.0",
"@firebase/auth-interop-types": "0.1.6",
"@firebase/component": "0.5.20",
"@firebase/messaging-interop-types": "0.1.0",
"@firebase/util": "1.7.2",
"node-fetch": "2.6.7",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/functions-compat": {
"version": "0.2.7",
"resolved": "http://localhost:4873/@firebase%2ffunctions-compat/-/functions-compat-0.2.7.tgz",
"integrity": "sha512-bcUst8ZDJHeVy2Wox4KEM5EizsrrqLzbwFIwJD7KkuSYP8XrlV2gaqJnCvIXXc0Nc4JRGvbXcvFFMXDjhsEp4Q==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/functions": "0.8.7",
"@firebase/functions-types": "0.5.0",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/functions-types": {
"version": "0.5.0",
"resolved": "http://localhost:4873/@firebase%2ffunctions-types/-/functions-types-0.5.0.tgz",
"integrity": "sha512-qza0M5EwX+Ocrl1cYI14zoipUX4gI/Shwqv0C1nB864INAD42Dgv4v94BCyxGHBg2kzlWy8PNafdP7zPO8aJQA=="
},
"node_modules/@firebase/installations": {
"version": "0.5.15",
"resolved": "http://localhost:4873/@firebase%2finstallations/-/installations-0.5.15.tgz",
"integrity": "sha512-RVm2nc2d+bEDFzFzQDTTU1Z13fjAD0v88yDLjtRZuT2R7JwvAegQ4F7CupBvnnf7nftkd3kBwdOi8MhMthb3jQ==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/util": "1.7.2",
"idb": "7.0.1",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/installations-compat": {
"version": "0.1.15",
"resolved": "http://localhost:4873/@firebase%2finstallations-compat/-/installations-compat-0.1.15.tgz",
"integrity": "sha512-m0atyudsVj6ekmM+djhhzzInMC3Y233YJky9vXUVt5MHQY0mHhqDds9+UIrCa6cpbl+ntI2fOuoYV7y01s3sfw==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/installations": "0.5.15",
"@firebase/installations-types": "0.4.0",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/installations-types": {
"version": "0.4.0",
"resolved": "http://localhost:4873/@firebase%2finstallations-types/-/installations-types-0.4.0.tgz",
"integrity": "sha512-nXxWKQDvBGctuvsizbUEJKfxXU9WAaDhon+j0jpjIfOJkvkj3YHqlLB/HeYjpUn85Pb22BjplpTnDn4Gm9pc3A==",
"peerDependencies": {
"@firebase/app-types": "0.x"
}
},
"node_modules/@firebase/logger": {
"version": "0.3.3",
"resolved": "http://localhost:4873/@firebase%2flogger/-/logger-0.3.3.tgz",
"integrity": "sha512-POTJl07jOKTOevLXrTvJD/VZ0M6PnJXflbAh5J9VGkmtXPXNG6MdZ9fmRgqYhXKTaDId6AQenQ262uwgpdtO0Q==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@firebase/messaging": {
"version": "0.9.19",
"resolved": "http://localhost:4873/@firebase%2fmessaging/-/messaging-0.9.19.tgz",
"integrity": "sha512-xu99y/7/P+y3txGtgjsVJZyvx7T5/KdvFgDWS7oZwhKYG0o+DXFvvw3SBMK82LFGFOoyHlJUPqv45EyCPnOPCA==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/installations": "0.5.15",
"@firebase/messaging-interop-types": "0.1.0",
"@firebase/util": "1.7.2",
"idb": "7.0.1",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/messaging-compat": {
"version": "0.1.19",
"resolved": "http://localhost:4873/@firebase%2fmessaging-compat/-/messaging-compat-0.1.19.tgz",
"integrity": "sha512-h5tx4nxfSILeRquk5mKE8Onu7WtL6b7rfB6GKNJKecvkPs3nnq5Z4cp2Av4JUR2Wtt9UxCTfO0iRbbmtrt2bZQ==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/messaging": "0.9.19",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/messaging-interop-types": {
"version": "0.1.0",
"resolved": "http://localhost:4873/@firebase%2fmessaging-interop-types/-/messaging-interop-types-0.1.0.tgz",
"integrity": "sha512-DbvUl/rXAZpQeKBnwz0NYY5OCqr2nFA0Bj28Fmr3NXGqR4PAkfTOHuQlVtLO1Nudo3q0HxAYLa68ZDAcuv2uKQ=="
},
"node_modules/@firebase/performance": {
"version": "0.5.15",
"resolved": "http://localhost:4873/@firebase%2fperformance/-/performance-0.5.15.tgz",
"integrity": "sha512-YnnkUehXXzqQefNE5PlPEsXeJYSeY7cMWEdHYTj6u0/F5ntLSAhVZC8jl3Y0fTU1W8a9USQhml6NaXyWiVGmjQ==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/installations": "0.5.15",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/performance-compat": {
"version": "0.1.15",
"resolved": "http://localhost:4873/@firebase%2fperformance-compat/-/performance-compat-0.1.15.tgz",
"integrity": "sha512-mryHr5eBEpWxBo8b3KM/53SwwVjMVahwdEnhfx1r+zAvmEPEzXUOGBzAC1l5WQ4DrwtDR87uMZ5soiQ/0jl9QQ==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/performance": "0.5.15",
"@firebase/performance-types": "0.1.0",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/performance-types": {
"version": "0.1.0",
"resolved": "http://localhost:4873/@firebase%2fperformance-types/-/performance-types-0.1.0.tgz",
"integrity": "sha512-6p1HxrH0mpx+622Ql6fcxFxfkYSBpE3LSuwM7iTtYU2nw91Hj6THC8Bc8z4nboIq7WvgsT/kOTYVVZzCSlXl8w=="
},
"node_modules/@firebase/remote-config": {
"version": "0.3.14",
"resolved": "http://localhost:4873/@firebase%2fremote-config/-/remote-config-0.3.14.tgz",
"integrity": "sha512-wEOz3Tasxhr5lCGioe0WNZwDOoQhNZK2qGAm5+AlHAPaAhWIWvqUTkKsk3nFRztyRZzj3r9k5Gc2OSpEcQKP1A==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/installations": "0.5.15",
"@firebase/logger": "0.3.3",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/remote-config-compat": {
"version": "0.1.15",
"resolved": "http://localhost:4873/@firebase%2fremote-config-compat/-/remote-config-compat-0.1.15.tgz",
"integrity": "sha512-jGUrZXIxQRMeSrqEaCi3MtMF33NN12TNTQDZlbex2+T2+yTMI/sn3Mq52T/OccCo86DK17WVlXSWQCH1zCD13g==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/logger": "0.3.3",
"@firebase/remote-config": "0.3.14",
"@firebase/remote-config-types": "0.2.0",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/remote-config-types": {
"version": "0.2.0",
"resolved": "http://localhost:4873/@firebase%2fremote-config-types/-/remote-config-types-0.2.0.tgz",
"integrity": "sha512-hqK5sCPeZvcHQ1D6VjJZdW6EexLTXNMJfPdTwbD8NrXUw6UjWC4KWhLK/TSlL0QPsQtcKRkaaoP+9QCgKfMFPw=="
},
"node_modules/@firebase/storage": {
"version": "0.9.12",
"resolved": "http://localhost:4873/@firebase%2fstorage/-/storage-0.9.12.tgz",
"integrity": "sha512-XIAmje0ufvRrxrUU/9tvGCuUIy7WSJf3XM8Y8OV9EW2Dg1w4f8IpraLiUdlirdtFM0UAnO2kDQHoiVQYhRrADQ==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/util": "1.7.2",
"node-fetch": "2.6.7",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app": "0.x"
}
},
"node_modules/@firebase/storage-compat": {
"version": "0.1.20",
"resolved": "http://localhost:4873/@firebase%2fstorage-compat/-/storage-compat-0.1.20.tgz",
"integrity": "sha512-8vruwltKdvEPhYbPXA/otb5fAD7MGsBHpCzktJWvF7eIALa4sUlYt+jJxG5Nwk2FoT1NrwLQ7TtI7zvm6/NinA==",
"dependencies": {
"@firebase/component": "0.5.20",
"@firebase/storage": "0.9.12",
"@firebase/storage-types": "0.6.0",
"@firebase/util": "1.7.2",
"tslib": "^2.1.0"
},
"peerDependencies": {
"@firebase/app-compat": "0.x"
}
},
"node_modules/@firebase/storage-types": {
"version": "0.6.0",
"resolved": "http://localhost:4873/@firebase%2fstorage-types/-/storage-types-0.6.0.tgz",
"integrity": "sha512-1LpWhcCb1ftpkP/akhzjzeFxgVefs6eMD2QeKiJJUGH1qOiows2w5o0sKCUSQrvrRQS1lz3SFGvNR1Ck/gqxeA==",
"peerDependencies": {
"@firebase/app-types": "0.x",
"@firebase/util": "1.x"
}
},
"node_modules/@firebase/util": {
"version": "1.7.2",
"resolved": "http://localhost:4873/@firebase%2futil/-/util-1.7.2.tgz",
"integrity": "sha512-P3aTihYEMoz2QQlcn0T7av7HLEK9gsTc1ZiN9VA8wnUtEJscUNemCmTmP3RRysqEb3Z+tVVoycztY8f6R36rRw==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@firebase/webchannel-wrapper": {
"version": "0.8.0",
"resolved": "http://localhost:4873/@firebase%2fwebchannel-wrapper/-/webchannel-wrapper-0.8.0.tgz",
"integrity": "sha512-Q8erQds5LuAUgNuFOt/tu/abffYUHYxN+Ogp2V5EOssfFG7Ja4ce324Sqyq41u/vB5CSr+tfYS3JzTDrDxCvdw=="
},
"node_modules/@google-cloud/firestore": {
"version": "6.4.0",
"resolved": "http://localhost:4873/@google-cloud%2ffirestore/-/firestore-6.4.0.tgz",
"integrity": "sha512-qhL5V8S6uIGlESQYC/TMKISlKHaM2qSACz0X15ID0s4F1NuVgSM3Z2FS10WYHdCGIwJ2C73xdLaS+ByFDsu7sg==",
"optional": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"functional-red-black-tree": "^1.0.1",
"google-gax": "^3.5.1",
"protobufjs": "^7.0.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@google-cloud/firestore/node_modules/long": {
"version": "5.2.0",
"resolved": "http://localhost:4873/long/-/long-5.2.0.tgz",
"integrity": "sha512-9RTUNjK60eJbx3uz+TEGF7fUr29ZDxR5QzXcyDpeSfeH28S9ycINflOgOlppit5U+4kNTe83KQnMEerw7GmE8w==",
"optional": true
},
"node_modules/@google-cloud/firestore/node_modules/protobufjs": {
"version": "7.1.2",
"resolved": "http://localhost:4873/protobufjs/-/protobufjs-7.1.2.tgz",
"integrity": "sha512-4ZPTPkXCdel3+L81yw3dG6+Kq3umdWKh7Dc7GW/CpNk4SX3hK58iPCWeCyhVTDrbkNeKrYNZ7EojM5WDaEWTLQ==",
"optional": true,
"dependencies": {
"@protobufjs/aspromise": "^1.1.2",
"@protobufjs/base64": "^1.1.2",
"@protobufjs/codegen": "^2.0.4",
"@protobufjs/eventemitter": "^1.1.0",
"@protobufjs/fetch": "^1.1.0",
"@protobufjs/float": "^1.0.2",
"@protobufjs/inquire": "^1.1.0",
"@protobufjs/path": "^1.1.2",
"@protobufjs/pool": "^1.1.0",
"@protobufjs/utf8": "^1.1.0",
"@types/node": ">=13.7.0",
"long": "^5.0.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@google-cloud/paginator": {
"version": "3.0.7",
"resolved": "http://localhost:4873/@google-cloud%2fpaginator/-/paginator-3.0.7.tgz",
"integrity": "sha512-jJNutk0arIQhmpUUQJPJErsojqo834KcyB6X7a1mxuic8i1tKXxde8E69IZxNZawRIlZdIK2QY4WALvlK5MzYQ==",
"optional": true,
"dependencies": {
"arrify": "^2.0.0",
"extend": "^3.0.2"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@google-cloud/projectify": {
"version": "3.0.0",
"resolved": "http://localhost:4873/@google-cloud%2fprojectify/-/projectify-3.0.0.tgz",
"integrity": "sha512-HRkZsNmjScY6Li8/kb70wjGlDDyLkVk3KvoEo9uIoxSjYLJasGiCch9+PqRVDOCGUFvEIqyogl+BeqILL4OJHA==",
"optional": true,
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@google-cloud/promisify": {
"version": "3.0.1",
"resolved": "http://localhost:4873/@google-cloud%2fpromisify/-/promisify-3.0.1.tgz",
"integrity": "sha512-z1CjRjtQyBOYL+5Qr9DdYIfrdLBe746jRTYfaYU6MeXkqp7UfYs/jX16lFFVzZ7PGEJvqZNqYUEtb1mvDww4pA==",
"optional": true,
"engines": {
"node": ">=12"
}
},
"node_modules/@google-cloud/storage": {
"version": "6.5.4",
"resolved": "http://localhost:4873/@google-cloud%2fstorage/-/storage-6.5.4.tgz",
"integrity": "sha512-7ntxYkceJo0FzKvHZU988Vy+PFRErSiqEIgcErJ+Hg8vU+nCw0dhg2K0uJJSnUJoEPJLz4DFAMqYCme0WhD2uA==",
"optional": true,
"dependencies": {
"@google-cloud/paginator": "^3.0.7",
"@google-cloud/projectify": "^3.0.0",
"@google-cloud/promisify": "^3.0.0",
"abort-controller": "^3.0.0",
"async-retry": "^1.3.3",
"compressible": "^2.0.12",
"duplexify": "^4.0.0",
"ent": "^2.2.0",
"extend": "^3.0.2",
"gaxios": "^5.0.0",
"google-auth-library": "^8.0.1",
"mime": "^3.0.0",
"mime-types": "^2.0.8",
"p-limit": "^3.0.1",
"retry-request": "^5.0.0",
"teeny-request": "^8.0.0",
"uuid": "^8.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@google-cloud/storage/node_modules/uuid": {
"version": "8.3.2",
"resolved": "http://localhost:4873/uuid/-/uuid-8.3.2.tgz",
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
"optional": true,
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/@grpc/grpc-js": {
"version": "1.7.3",
"resolved": "http://localhost:4873/@grpc%2fgrpc-js/-/grpc-js-1.7.3.tgz",
"integrity": "sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==",
"dependencies": {
"@grpc/proto-loader": "^0.7.0",
"@types/node": ">=12.12.47"
},
"engines": {
"node": "^8.13.0 || >=10.10.0"
}
},
"node_modules/@grpc/grpc-js/node_modules/@grpc/proto-loader": {
"version": "0.7.3",
"resolved": "http://localhost:4873/@grpc%2fproto-loader/-/proto-loader-0.7.3.tgz",
"integrity": "sha512-5dAvoZwna2Py3Ef96Ux9jIkp3iZ62TUsV00p3wVBPNX5K178UbNi8Q7gQVqwXT1Yq9RejIGG9G2IPEo93T6RcA==",
"dependencies": {
"@types/long": "^4.0.1",
"lodash.camelcase": "^4.3.0",
"long": "^4.0.0",
"protobufjs": "^7.0.0",
"yargs": "^16.2.0"
},
"bin": {
"proto-loader-gen-types": "build/bin/proto-loader-gen-types.js"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@grpc/grpc-js/node_modules/protobufjs": {
"version": "7.1.2",
"resolved": "http://localhost:4873/protobufjs/-/protobufjs-7.1.2.tgz",
"integrity": "sha512-4ZPTPkXCdel3+L81yw3dG6+Kq3umdWKh7Dc7GW/CpNk4SX3hK58iPCWeCyhVTDrbkNeKrYNZ7EojM5WDaEWTLQ==",
"dependencies": {
"@protobufjs/aspromise": "^1.1.2",
"@protobufjs/base64": "^1.1.2",
"@protobufjs/codegen": "^2.0.4",
"@protobufjs/eventemitter": "^1.1.0",
"@protobufjs/fetch": "^1.1.0",
"@protobufjs/float": "^1.0.2",
"@protobufjs/inquire": "^1.1.0",
"@protobufjs/path": "^1.1.2",
"@protobufjs/pool": "^1.1.0",
"@protobufjs/utf8": "^1.1.0",
"@types/node": ">=13.7.0",
"long": "^5.0.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@grpc/grpc-js/node_modules/protobufjs/node_modules/long": {
"version": "5.2.0",
"resolved": "http://localhost:4873/long/-/long-5.2.0.tgz",
"integrity": "sha512-9RTUNjK60eJbx3uz+TEGF7fUr29ZDxR5QzXcyDpeSfeH28S9ycINflOgOlppit5U+4kNTe83KQnMEerw7GmE8w=="
},
"node_modules/@grpc/proto-loader": {
"version": "0.6.13",
"resolved": "http://localhost:4873/@grpc%2fproto-loader/-/proto-loader-0.6.13.tgz",
"integrity": "sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==",
"dependencies": {
"@types/long": "^4.0.1",
"lodash.camelcase": "^4.3.0",
"long": "^4.0.0",
"protobufjs": "^6.11.3",
"yargs": "^16.2.0"
},
"bin": {
"proto-loader-gen-types": "build/bin/proto-loader-gen-types.js"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@hapi/accept": {
"version": "5.0.2",
"resolved": "http://localhost:4873/@hapi%2faccept/-/accept-5.0.2.tgz",
"integrity": "sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/ammo": {
"version": "5.0.1",
"resolved": "http://localhost:4873/@hapi%2fammo/-/ammo-5.0.1.tgz",
"integrity": "sha512-FbCNwcTbnQP4VYYhLNGZmA76xb2aHg9AMPiy18NZyWMG310P5KdFGyA9v2rm5ujrIny77dEEIkMOwl0Xv+fSSA==",
"dependencies": {
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/b64": {
"version": "5.0.0",
"resolved": "http://localhost:4873/@hapi%2fb64/-/b64-5.0.0.tgz",
"integrity": "sha512-ngu0tSEmrezoiIaNGG6rRvKOUkUuDdf4XTPnONHGYfSGRmDqPZX5oJL6HAdKTo1UQHECbdB4OzhWrfgVppjHUw==",
"dependencies": {
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/boom": {
"version": "9.1.4",
"resolved": "http://localhost:4873/@hapi%2fboom/-/boom-9.1.4.tgz",
"integrity": "sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw==",
"dependencies": {
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/bounce": {
"version": "2.0.0",
"resolved": "http://localhost:4873/@hapi%2fbounce/-/bounce-2.0.0.tgz",
"integrity": "sha512-JesW92uyzOOyuzJKjoLHM1ThiOvHPOLDHw01YV8yh5nCso7sDwJho1h0Ad2N+E62bZyz46TG3xhAi/78Gsct6A==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/bourne": {
"version": "2.1.0",
"resolved": "http://localhost:4873/@hapi%2fbourne/-/bourne-2.1.0.tgz",
"integrity": "sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q=="
},
"node_modules/@hapi/call": {
"version": "8.0.1",
"resolved": "http://localhost:4873/@hapi%2fcall/-/call-8.0.1.tgz",
"integrity": "sha512-bOff6GTdOnoe5b8oXRV3lwkQSb/LAWylvDMae6RgEWWntd0SHtkYbQukDHKlfaYtVnSAgIavJ0kqszF/AIBb6g==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/catbox": {
"version": "11.1.1",
"resolved": "http://localhost:4873/@hapi%2fcatbox/-/catbox-11.1.1.tgz",
"integrity": "sha512-u/8HvB7dD/6X8hsZIpskSDo4yMKpHxFd7NluoylhGrL6cUfYxdQPnvUp9YU2C6F9hsyBVLGulBd9vBN1ebfXOQ==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x",
"@hapi/podium": "4.x.x",
"@hapi/validate": "1.x.x"
}
},
"node_modules/@hapi/catbox-memory": {
"version": "5.0.1",
"resolved": "http://localhost:4873/@hapi%2fcatbox-memory/-/catbox-memory-5.0.1.tgz",
"integrity": "sha512-QWw9nOYJq5PlvChLWV8i6hQHJYfvdqiXdvTupJFh0eqLZ64Xir7mKNi96d5/ZMUAqXPursfNDIDxjFgoEDUqeQ==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/content": {
"version": "5.0.2",
"resolved": "http://localhost:4873/@hapi%2fcontent/-/content-5.0.2.tgz",
"integrity": "sha512-mre4dl1ygd4ZyOH3tiYBrOUBzV7Pu/EOs8VLGf58vtOEECWed8Uuw6B4iR9AN/8uQt42tB04qpVaMyoMQh0oMw==",
"dependencies": {
"@hapi/boom": "9.x.x"
}
},
"node_modules/@hapi/cryptiles": {
"version": "5.1.0",
"resolved": "http://localhost:4873/@hapi%2fcryptiles/-/cryptiles-5.1.0.tgz",
"integrity": "sha512-fo9+d1Ba5/FIoMySfMqPBR/7Pa29J2RsiPrl7bkwo5W5o+AN1dAYQRi4SPrPwwVxVGKjgLOEWrsvt1BonJSfLA==",
"dependencies": {
"@hapi/boom": "9.x.x"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@hapi/file": {
"version": "2.0.0",
"resolved": "http://localhost:4873/@hapi%2ffile/-/file-2.0.0.tgz",
"integrity": "sha512-WSrlgpvEqgPWkI18kkGELEZfXr0bYLtr16iIN4Krh9sRnzBZN6nnWxHFxtsnP684wueEySBbXPDg/WfA9xJdBQ=="
},
"node_modules/@hapi/hapi": {
"version": "20.2.2",
"resolved": "http://localhost:4873/@hapi%2fhapi/-/hapi-20.2.2.tgz",
"integrity": "sha512-crhU6TIKt7QsksWLYctDBAXogk9PYAm7UzdpETyuBHC2pCa6/+B5NykiOVLG/3FCIgHo/raPVtan8bYtByHORQ==",
"dependencies": {
"@hapi/accept": "^5.0.1",
"@hapi/ammo": "^5.0.1",
"@hapi/boom": "^9.1.0",
"@hapi/bounce": "^2.0.0",
"@hapi/call": "^8.0.0",
"@hapi/catbox": "^11.1.1",
"@hapi/catbox-memory": "^5.0.0",
"@hapi/heavy": "^7.0.1",
"@hapi/hoek": "^9.0.4",
"@hapi/mimos": "^6.0.0",
"@hapi/podium": "^4.1.1",
"@hapi/shot": "^5.0.5",
"@hapi/somever": "^3.0.0",
"@hapi/statehood": "^7.0.4",
"@hapi/subtext": "^7.0.3",
"@hapi/teamwork": "^5.1.1",
"@hapi/topo": "^5.0.0",
"@hapi/validate": "^1.1.1"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@hapi/heavy": {
"version": "7.0.1",
"resolved": "http://localhost:4873/@hapi%2fheavy/-/heavy-7.0.1.tgz",
"integrity": "sha512-vJ/vzRQ13MtRzz6Qd4zRHWS3FaUc/5uivV2TIuExGTM9Qk+7Zzqj0e2G7EpE6KztO9SalTbiIkTh7qFKj/33cA==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x",
"@hapi/validate": "1.x.x"
}
},
"node_modules/@hapi/hoek": {
"version": "9.3.0",
"resolved": "http://localhost:4873/@hapi%2fhoek/-/hoek-9.3.0.tgz",
"integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="
},
"node_modules/@hapi/iron": {
"version": "6.0.0",
"resolved": "http://localhost:4873/@hapi%2firon/-/iron-6.0.0.tgz",
"integrity": "sha512-zvGvWDufiTGpTJPG1Y/McN8UqWBu0k/xs/7l++HVU535NLHXsHhy54cfEMdW7EjwKfbBfM9Xy25FmTiobb7Hvw==",
"dependencies": {
"@hapi/b64": "5.x.x",
"@hapi/boom": "9.x.x",
"@hapi/bourne": "2.x.x",
"@hapi/cryptiles": "5.x.x",
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/mimos": {
"version": "6.0.0",
"resolved": "http://localhost:4873/@hapi%2fmimos/-/mimos-6.0.0.tgz",
"integrity": "sha512-Op/67tr1I+JafN3R3XN5DucVSxKRT/Tc+tUszDwENoNpolxeXkhrJ2Czt6B6AAqrespHoivhgZBWYSuANN9QXg==",
"dependencies": {
"@hapi/hoek": "9.x.x",
"mime-db": "1.x.x"
}
},
"node_modules/@hapi/nigel": {
"version": "4.0.2",
"resolved": "http://localhost:4873/@hapi%2fnigel/-/nigel-4.0.2.tgz",
"integrity": "sha512-ht2KoEsDW22BxQOEkLEJaqfpoKPXxi7tvabXy7B/77eFtOyG5ZEstfZwxHQcqAiZhp58Ae5vkhEqI03kawkYNw==",
"dependencies": {
"@hapi/hoek": "^9.0.4",
"@hapi/vise": "^4.0.0"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@hapi/pez": {
"version": "5.0.3",
"resolved": "http://localhost:4873/@hapi%2fpez/-/pez-5.0.3.tgz",
"integrity": "sha512-mpikYRJjtrbJgdDHG/H9ySqYqwJ+QU/D7FXsYciS9P7NYBXE2ayKDAy3H0ou6CohOCaxPuTV4SZ0D936+VomHA==",
"dependencies": {
"@hapi/b64": "5.x.x",
"@hapi/boom": "9.x.x",
"@hapi/content": "^5.0.2",
"@hapi/hoek": "9.x.x",
"@hapi/nigel": "4.x.x"
}
},
"node_modules/@hapi/podium": {
"version": "4.1.3",
"resolved": "http://localhost:4873/@hapi%2fpodium/-/podium-4.1.3.tgz",
"integrity": "sha512-ljsKGQzLkFqnQxE7qeanvgGj4dejnciErYd30dbrYzUOF/FyS/DOF97qcrT3bhoVwCYmxa6PEMhxfCPlnUcD2g==",
"dependencies": {
"@hapi/hoek": "9.x.x",
"@hapi/teamwork": "5.x.x",
"@hapi/validate": "1.x.x"
}
},
"node_modules/@hapi/shot": {
"version": "5.0.5",
"resolved": "http://localhost:4873/@hapi%2fshot/-/shot-5.0.5.tgz",
"integrity": "sha512-x5AMSZ5+j+Paa8KdfCoKh+klB78otxF+vcJR/IoN91Vo2e5ulXIW6HUsFTCU+4W6P/Etaip9nmdAx2zWDimB2A==",
"dependencies": {
"@hapi/hoek": "9.x.x",
"@hapi/validate": "1.x.x"
}
},
"node_modules/@hapi/somever": {
"version": "3.0.1",
"resolved": "http://localhost:4873/@hapi%2fsomever/-/somever-3.0.1.tgz",
"integrity": "sha512-4ZTSN3YAHtgpY/M4GOtHUXgi6uZtG9nEZfNI6QrArhK0XN/RDVgijlb9kOmXwCR5VclDSkBul9FBvhSuKXx9+w==",
"dependencies": {
"@hapi/bounce": "2.x.x",
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/statehood": {
"version": "7.0.4",
"resolved": "http://localhost:4873/@hapi%2fstatehood/-/statehood-7.0.4.tgz",
"integrity": "sha512-Fia6atroOVmc5+2bNOxF6Zv9vpbNAjEXNcUbWXavDqhnJDlchwUUwKS5LCi5mGtCTxRhUKKHwuxuBZJkmLZ7fw==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/bounce": "2.x.x",
"@hapi/bourne": "2.x.x",
"@hapi/cryptiles": "5.x.x",
"@hapi/hoek": "9.x.x",
"@hapi/iron": "6.x.x",
"@hapi/validate": "1.x.x"
}
},
"node_modules/@hapi/subtext": {
"version": "7.0.4",
"resolved": "http://localhost:4873/@hapi%2fsubtext/-/subtext-7.0.4.tgz",
"integrity": "sha512-Y72moHhbRuO8kwBHFEnCRw7oOnhNh4Pl+aonxAze18jkyMpE4Gwz4lNID7ei8vd3lpXC2rKdkxXJgtfY+WttRw==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/bourne": "2.x.x",
"@hapi/content": "^5.0.2",
"@hapi/file": "2.x.x",
"@hapi/hoek": "9.x.x",
"@hapi/pez": "^5.0.1",
"@hapi/wreck": "17.x.x"
}
},
"node_modules/@hapi/teamwork": {
"version": "5.1.1",
"resolved": "http://localhost:4873/@hapi%2fteamwork/-/teamwork-5.1.1.tgz",
"integrity": "sha512-1oPx9AE5TIv+V6Ih54RP9lTZBso3rP8j4Xhb6iSVwPXtAM+sDopl5TFMv5Paw73UnpZJ9gjcrTE1BXrWt9eQrg==",
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@hapi/topo": {
"version": "5.1.0",
"resolved": "http://localhost:4873/@hapi%2ftopo/-/topo-5.1.0.tgz",
"integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==",
"dependencies": {
"@hapi/hoek": "^9.0.0"
}
},
"node_modules/@hapi/validate": {
"version": "1.1.3",
"resolved": "http://localhost:4873/@hapi%2fvalidate/-/validate-1.1.3.tgz",
"integrity": "sha512-/XMR0N0wjw0Twzq2pQOzPBZlDzkekGcoCtzO314BpIEsbXdYGthQUbxgkGDf4nhk1+IPDAsXqWjMohRQYO06UA==",
"dependencies": {
"@hapi/hoek": "^9.0.0",
"@hapi/topo": "^5.0.0"
}
},
"node_modules/@hapi/vise": {
"version": "4.0.0",