-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
19218 lines (19218 loc) · 786 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": "retrolist-backend",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ampproject/toolbox-core": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-core/-/toolbox-core-2.8.0.tgz",
"integrity": "sha512-YrMRrE9zfAChPlFLT+B4yoGEH6CR/Yerjm6SCxuFSPARK/LaytUV+ZhZ03tlMv5wUHDH2Lq8e/lGymME0CXBhA==",
"requires": {
"cross-fetch": "3.1.2",
"lru-cache": "6.0.0"
},
"dependencies": {
"cross-fetch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.2.tgz",
"integrity": "sha512-+JhD65rDNqLbGmB3Gzs3HrEKC0aQnD+XA3SY6RjgkF88jV2q5cTc5+CwxlS3sdmLk98gpPt5CF9XRnPdlxZe6w==",
"requires": {
"node-fetch": "2.6.1"
}
}
}
},
"@ampproject/toolbox-optimizer": {
"version": "2.7.1-alpha.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-optimizer/-/toolbox-optimizer-2.7.1-alpha.0.tgz",
"integrity": "sha512-WGPZKVQvHgNYJk1XVJCCmY+NVGTGJtvn0OALDyiegN4FJWOcilQUhCIcjMkZN59u1flz/u+sEKccM5qsROqVyg==",
"requires": {
"@ampproject/toolbox-core": "^2.7.1-alpha.0",
"@ampproject/toolbox-runtime-version": "^2.7.1-alpha.0",
"@ampproject/toolbox-script-csp": "^2.5.4",
"@ampproject/toolbox-validator-rules": "^2.7.1-alpha.0",
"abort-controller": "3.0.0",
"cross-fetch": "3.0.6",
"cssnano-simple": "1.2.1",
"dom-serializer": "1.1.0",
"domhandler": "3.3.0",
"domutils": "2.4.2",
"htmlparser2": "5.0.1",
"https-proxy-agent": "5.0.0",
"lru-cache": "6.0.0",
"node-fetch": "2.6.1",
"normalize-html-whitespace": "1.0.0",
"postcss": "7.0.32",
"postcss-safe-parser": "4.0.2",
"terser": "5.5.1"
},
"dependencies": {
"cross-fetch": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz",
"integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==",
"requires": {
"node-fetch": "2.6.1"
}
},
"dom-serializer": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.1.0.tgz",
"integrity": "sha512-ox7bvGXt2n+uLWtCRLybYx60IrOlWL/aCebWJk1T0d4m3y2tzf4U3ij9wBMUb6YJZpz06HCCYuyCDveE2xXmzQ==",
"requires": {
"domelementtype": "^2.0.1",
"domhandler": "^3.0.0",
"entities": "^2.0.0"
}
},
"domhandler": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz",
"integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==",
"requires": {
"domelementtype": "^2.0.1"
}
},
"domutils": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.4.2.tgz",
"integrity": "sha512-NKbgaM8ZJOecTZsIzW5gSuplsX2IWW2mIK7xVr8hTQF2v1CJWTmLZ1HOCh5sH+IzVPAGE5IucooOkvwBRAdowA==",
"requires": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.0.1",
"domhandler": "^3.3.0"
}
},
"htmlparser2": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-5.0.1.tgz",
"integrity": "sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==",
"requires": {
"domelementtype": "^2.0.1",
"domhandler": "^3.3.0",
"domutils": "^2.4.2",
"entities": "^2.0.0"
}
},
"postcss": {
"version": "7.0.32",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz",
"integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==",
"requires": {
"chalk": "^2.4.2",
"source-map": "^0.6.1",
"supports-color": "^6.1.0"
}
},
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"supports-color": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
"requires": {
"has-flag": "^3.0.0"
}
},
"terser": {
"version": "5.5.1",
"resolved": "https://registry.npmjs.org/terser/-/terser-5.5.1.tgz",
"integrity": "sha512-6VGWZNVP2KTUcltUQJ25TtNjx/XgdDsBDKGt8nN0MpydU36LmbPPcMBd2kmtZNNGVVDLg44k7GKeHHj+4zPIBQ==",
"requires": {
"commander": "^2.20.0",
"source-map": "~0.7.2",
"source-map-support": "~0.5.19"
},
"dependencies": {
"source-map": {
"version": "0.7.3",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
}
}
}
}
},
"@ampproject/toolbox-runtime-version": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.8.0.tgz",
"integrity": "sha512-vkotDc6S3Q3Xm6LIPzWo2T1+yxvj+bIDrD4SObk6J4SVqilIlPEunLayS602Su+ZXqNC82VjEeD1ARAtc613dQ==",
"requires": {
"@ampproject/toolbox-core": "^2.8.0"
}
},
"@ampproject/toolbox-script-csp": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-script-csp/-/toolbox-script-csp-2.8.0.tgz",
"integrity": "sha512-5/ytdTzhmdIyOkcEBskh5ZlLJ8V4bbe+1pY9LZQ8DfWrSOVD1pJ+LtAO/7lmTM+HXxMAKPYDRpvsJc0vvbY0tw=="
},
"@ampproject/toolbox-validator-rules": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-validator-rules/-/toolbox-validator-rules-2.8.0.tgz",
"integrity": "sha512-kbInwnzpEPVZkKigpKFkF/DQ2LsuZ5b8vrEFHjJ4P+meKVQg2QF/UWAQpIMMdjGe1AQBT+DWm91n9UyjgqfnWQ==",
"requires": {
"cross-fetch": "3.1.2"
},
"dependencies": {
"cross-fetch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.2.tgz",
"integrity": "sha512-+JhD65rDNqLbGmB3Gzs3HrEKC0aQnD+XA3SY6RjgkF88jV2q5cTc5+CwxlS3sdmLk98gpPt5CF9XRnPdlxZe6w==",
"requires": {
"node-fetch": "2.6.1"
}
}
}
},
"@apollo/client": {
"version": "3.3.21",
"resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.3.21.tgz",
"integrity": "sha512-RAmZReFuKCKx0Rs5C0nVJwKomAHUHn+gGP/YvbEsXQWu0sXoncEUZa71UqlfCPVXa/0MkYOIbCXSQdOcuRrHgw==",
"requires": {
"@graphql-typed-document-node/core": "^3.0.0",
"@types/zen-observable": "^0.8.0",
"@wry/context": "^0.6.0",
"@wry/equality": "^0.5.0",
"fast-json-stable-stringify": "^2.0.0",
"graphql-tag": "^2.12.0",
"hoist-non-react-statics": "^3.3.2",
"optimism": "^0.16.0",
"prop-types": "^15.7.2",
"symbol-observable": "^4.0.0",
"ts-invariant": "^0.8.0",
"tslib": "^1.10.0",
"zen-observable": "^0.8.14"
}
},
"@apollo/protobufjs": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.2.tgz",
"integrity": "sha512-vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ==",
"requires": {
"@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/long": "^4.0.0",
"@types/node": "^10.1.0",
"long": "^4.0.0"
},
"dependencies": {
"@types/node": {
"version": "10.17.60",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz",
"integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw=="
}
}
},
"@apollographql/apollo-tools": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.1.tgz",
"integrity": "sha512-ZII+/xUFfb9ezDU2gad114+zScxVFMVlZ91f8fGApMzlS1kkqoyLnC4AJaQ1Ya/X+b63I20B4Gd+eCL8QuB4sA=="
},
"@apollographql/graphql-playground-html": {
"version": "1.6.27",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.27.tgz",
"integrity": "sha512-tea2LweZvn6y6xFV11K0KC8ETjmm52mQrW+ezgB2O/aTQf8JGyFmMcRPFgUaQZeHbWdm8iisDC6EjOKsXu0nfw==",
"requires": {
"xss": "^1.0.8"
}
},
"@apollographql/graphql-playground-react": {
"version": "1.7.41",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-react/-/graphql-playground-react-1.7.41.tgz",
"integrity": "sha512-yHh16LT1IffgE09rx2ShXImgUIv+YrK/P40cFyfQn+ZqxGEyBZbwcgDYuRwmDNpe4DHHguT/suMayV2936AIrQ==",
"requires": {
"@types/lru-cache": "^4.1.1",
"apollo-link": "^1.0.7",
"apollo-link-http": "^1.3.2",
"apollo-link-ws": "1.0.8",
"calculate-size": "^1.1.1",
"codemirror": "^5.58.1",
"codemirror-graphql": "^0.12.3",
"copy-to-clipboard": "^3.0.8",
"cryptiles": "4.1.2",
"cuid": "^1.3.8",
"graphiql": "^0.17.5",
"graphql": "^15.5.0",
"immutable": "^4.0.0-rc.9",
"isomorphic-fetch": "^2.2.1",
"js-yaml": "^3.10.0",
"json-stable-stringify": "^1.0.1",
"keycode": "^2.1.9",
"lodash": "^4.17.11",
"lodash.debounce": "^4.0.8",
"markdown-it": "^8.4.1",
"marked": "^0.8.2",
"prettier": "2.2.1",
"prop-types": "^15.7.2",
"query-string": "5",
"react": "16.13.1",
"react-addons-shallow-compare": "^15.6.2",
"react-codemirror": "^1.0.0",
"react-copy-to-clipboard": "^5.0.1",
"react-display-name": "^0.2.3",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.0",
"react-input-autosize": "^2.2.1",
"react-modal": "^3.1.11",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-sortable-hoc": "^0.8.3",
"react-transition-group": "^2.2.1",
"react-virtualized": "^9.12.0",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-immutable": "^4.0.0",
"redux-localstorage": "^1.0.0-rc5",
"redux-localstorage-debounce": "^0.1.0",
"redux-localstorage-filter": "^0.1.1",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"seamless-immutable": "^7.0.1",
"styled-components": "^4.0.0",
"subscriptions-transport-ws": "^0.9.5",
"utility-types": "^1.0.0",
"webpack-bundle-analyzer": "^3.3.2",
"zen-observable": "^0.7.1"
},
"dependencies": {
"cuid": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/cuid/-/cuid-1.3.8.tgz",
"integrity": "sha1-S4deCWm612T37AcGz0T1+wgx9rc=",
"requires": {
"browser-fingerprint": "0.0.1",
"core-js": "^1.1.1",
"node-fingerprint": "0.0.2"
}
},
"dom-helpers": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
"integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
"requires": {
"@babel/runtime": "^7.1.2"
}
},
"hoist-non-react-statics": {
"version": "2.5.5",
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw=="
},
"prettier": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz",
"integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q=="
},
"react": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz",
"integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2"
}
},
"react-input-autosize": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/react-input-autosize/-/react-input-autosize-2.2.2.tgz",
"integrity": "sha512-jQJgYCA3S0j+cuOwzuCd1OjmBmnZLdqQdiLKRYrsMMzbjUrVDS5RvJUDwJqA7sKuksDuzFtm6hZGKFu7Mjk5aw==",
"requires": {
"prop-types": "^15.5.8"
}
},
"react-router": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/react-router/-/react-router-4.3.1.tgz",
"integrity": "sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==",
"requires": {
"history": "^4.7.2",
"hoist-non-react-statics": "^2.5.0",
"invariant": "^2.2.4",
"loose-envify": "^1.3.1",
"path-to-regexp": "^1.7.0",
"prop-types": "^15.6.1",
"warning": "^4.0.1"
}
},
"react-router-dom": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-4.3.1.tgz",
"integrity": "sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==",
"requires": {
"history": "^4.7.2",
"invariant": "^2.2.4",
"loose-envify": "^1.3.1",
"prop-types": "^15.6.1",
"react-router": "^4.3.1",
"warning": "^4.0.1"
}
},
"react-transition-group": {
"version": "2.9.0",
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz",
"integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==",
"requires": {
"dom-helpers": "^3.4.0",
"loose-envify": "^1.4.0",
"prop-types": "^15.6.2",
"react-lifecycles-compat": "^3.0.4"
}
},
"zen-observable": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.7.1.tgz",
"integrity": "sha512-OI6VMSe0yeqaouIXtedC+F55Sr6r9ppS7+wTbSexkYdHbdt4ctTuPNXP/rwm7GTVI63YBc+EBT0b0tl7YnJLRg=="
}
}
},
"@apollographql/graphql-upload-8-fork": {
"version": "8.1.3",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-upload-8-fork/-/graphql-upload-8-fork-8.1.3.tgz",
"integrity": "sha512-ssOPUT7euLqDXcdVv3Qs4LoL4BPtfermW1IOouaqEmj36TpHYDmYDIbKoSQxikd9vtMumFnP87OybH7sC9fJ6g==",
"requires": {
"@types/express": "*",
"@types/fs-capacitor": "*",
"@types/koa": "*",
"busboy": "^0.3.1",
"fs-capacitor": "^2.0.4",
"http-errors": "^1.7.3",
"object-path": "^0.11.4"
},
"dependencies": {
"http-errors": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.0.tgz",
"integrity": "sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==",
"requires": {
"depd": "~1.1.2",
"inherits": "2.0.4",
"setprototypeof": "1.2.0",
"statuses": ">= 1.5.0 < 2",
"toidentifier": "1.0.0"
}
},
"inherits": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
"setprototypeof": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
}
}
},
"@arch-ui/alert": {
"version": "0.0.18",
"resolved": "https://registry.npmjs.org/@arch-ui/alert/-/alert-0.0.18.tgz",
"integrity": "sha512-saIVqNht626gPH7o8Y6glYfO6dPHVKVkSJWzBraxqhUcdHHxVVF+dE+l92sRxckoMQjZwRg3AHgQdc8Ioe7Afg==",
"requires": {
"@arch-ui/theme": "^0.0.11",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/badge": {
"version": "0.0.20",
"resolved": "https://registry.npmjs.org/@arch-ui/badge/-/badge-0.0.20.tgz",
"integrity": "sha512-+mISPpyYPfuhuGL7SsuKKzP/2HJIW7J9/5OtmgzlenNqqwmTje54i8OCpGFaAPC8rTeFRLUcW1YgAvRLzDGZrA==",
"requires": {
"@arch-ui/theme": "0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/button": {
"version": "0.0.22",
"resolved": "https://registry.npmjs.org/@arch-ui/button/-/button-0.0.22.tgz",
"integrity": "sha512-2vQbWD8sSRZtvcXK/ud9tncQpcOfVoSxVsvO/9lD6J2VQz5hGo/w44DfU9ZKbtVfHEcdpOS47prBq4yOBw55tA==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/common": "^0.0.12",
"@arch-ui/loading": "^0.0.18",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"react-pseudo-state": "^2.2.2",
"react-router-dom": "5.2.0"
}
},
"@arch-ui/card": {
"version": "0.0.18",
"resolved": "https://registry.npmjs.org/@arch-ui/card/-/card-0.0.18.tgz",
"integrity": "sha512-Vs3JKj1AQVqCDaOETTut0ADeroDITRLiB869PSoEsZteE3D9EBA3R5dLc18DnERWOMa89+dKVvCleJp3yMViEQ==",
"requires": {
"@arch-ui/theme": "0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/color-utils": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.2.tgz",
"integrity": "sha512-bFzzak13UWSjkoojKoatSgyj5t4p6HTOIvRu+L6PfGhwgugaNcVhu1XCBJnt3v/ilQX8OXFWecN0e55QI4sVCQ=="
},
"@arch-ui/common": {
"version": "0.0.12",
"resolved": "https://registry.npmjs.org/@arch-ui/common/-/common-0.0.12.tgz",
"integrity": "sha512-1ixk/ubNqJup6fMHPOxApqgKkLJ2IFlQE7s+bXTIBzokx4ogPX+jMb5qYh7NGuzN5UfZnXS6etxZ9nDdoMoIvA==",
"requires": {
"@arch-ui/theme": "^0.0.11"
}
},
"@arch-ui/confirm": {
"version": "0.0.26",
"resolved": "https://registry.npmjs.org/@arch-ui/confirm/-/confirm-0.0.26.tgz",
"integrity": "sha512-yHmxI1Vf2kya2NT+oNvjAaC4MmgWoA9Ds5txYiiorU4blNPoNnvXB2gHuab8njGnUXEtThnOIfO/7qQPZL1rSg==",
"requires": {
"@arch-ui/modal-utils": "^1.0.16",
"@arch-ui/theme": "^0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^8.5.0",
"react-scrolllock": "^5.0.1"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/controls": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/@arch-ui/controls/-/controls-0.1.12.tgz",
"integrity": "sha512-yonE8G33RaGyALYRpaKOLdQuWEPaiAt2qTr/Jxr1FY6X/NCtFRMOfz3GKQPBFDc29xDgqTTLgcgsb7gCFNjtng==",
"requires": {
"@arch-ui/input": "^0.1.14",
"@arch-ui/theme": "^0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"react-pseudo-state": "^2.2.2",
"react-radios": "^1.1.0"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/day-picker": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@arch-ui/day-picker/-/day-picker-1.0.8.tgz",
"integrity": "sha512-7BC05FyuUd428TfwbfFnNrF72M3zVvkLnHnK9vJfBB+0FJv+KPytIUGFihYXq89wrWTgYJvGVB5ai8DvsSJPUA==",
"requires": {
"@arch-ui/input": "^0.1.14",
"@arch-ui/select": "^0.1.12",
"@arch-ui/theme": "^0.0.14",
"@arch-ui/typography": "^0.0.21",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@primer/octicons-react": "^11.3.0",
"chrono-node": "^1.4.8",
"date-fns": "^2.21.3",
"intersection-observer": "^0.12.0",
"moment": "^2.29.1",
"react-window": "^1.8.6"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
},
"@arch-ui/typography": {
"version": "0.0.21",
"resolved": "https://registry.npmjs.org/@arch-ui/typography/-/typography-0.0.21.tgz",
"integrity": "sha512-dvcHtnLdAztlUO1SXFheOmVo879G6jNb6rONvZmJkUKsjXK0jauBPZcWoT+rYwkw6IcueumtiDhPn+52FgYWIA==",
"requires": {
"@arch-ui/theme": "0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27"
}
}
}
},
"@arch-ui/dialog": {
"version": "0.0.28",
"resolved": "https://registry.npmjs.org/@arch-ui/dialog/-/dialog-0.0.28.tgz",
"integrity": "sha512-DeTZDigSeVYAdNdgxmDU94v3MBPYt1MAQF8nDOlWCE6fCaYPGIEvljYh2BG3cucQvcTnVXYAwn/DmtlpB2ozqw==",
"requires": {
"@arch-ui/color-utils": "^0.0.5",
"@arch-ui/modal-utils": "^1.0.16",
"@arch-ui/theme": "^0.0.14",
"@arch-ui/typography": "^0.0.21",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^8.5.0",
"react-scrolllock": "^5.0.1"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
},
"@arch-ui/typography": {
"version": "0.0.21",
"resolved": "https://registry.npmjs.org/@arch-ui/typography/-/typography-0.0.21.tgz",
"integrity": "sha512-dvcHtnLdAztlUO1SXFheOmVo879G6jNb6rONvZmJkUKsjXK0jauBPZcWoT+rYwkw6IcueumtiDhPn+52FgYWIA==",
"requires": {
"@arch-ui/theme": "0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27"
}
}
}
},
"@arch-ui/drawer": {
"version": "0.0.25",
"resolved": "https://registry.npmjs.org/@arch-ui/drawer/-/drawer-0.0.25.tgz",
"integrity": "sha512-N+FrfJbs3DdJvg0bnTaaPdFvktxNDzLGlYvYHmWXjWeQAkA1YBWrS+i4lIhNtaZE5VMsu75nXHdPTup3qgCO5Q==",
"requires": {
"@arch-ui/color-utils": "^0.0.2",
"@arch-ui/modal-utils": "^1.0.13",
"@arch-ui/theme": "^0.0.11",
"@arch-ui/typography": "^0.0.18",
"@babel/runtime": "^7.12.5",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^8.3.0",
"react-scrolllock": "^5.0.1"
}
},
"@arch-ui/dropdown": {
"version": "0.0.25",
"resolved": "https://registry.npmjs.org/@arch-ui/dropdown/-/dropdown-0.0.25.tgz",
"integrity": "sha512-dtLKr966j1o6Bd2vLC+X9g32h5kGveBnOLHJgNojSVfYqj6d7X6KMs3W4SYDKTiT4SUtVnST13LTgKR5lx4sjA==",
"requires": {
"@arch-ui/modal-utils": "^1.0.16",
"@arch-ui/theme": "^0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"focus-trap-react": "^8.5.0",
"react-router-dom": "5.2.0"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/fields": {
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/@arch-ui/fields/-/fields-3.0.8.tgz",
"integrity": "sha512-CUiky48X7mW24bKHLNgCFU/8hv0jCvJ4g+rbmzxT7gFj/xdNKGhrr3wy9wfOeYiTGUAQ2/q5SbslHfuFtixkfA==",
"requires": {
"@arch-ui/lozenge": "^0.0.20",
"@arch-ui/theme": "^0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@primer/octicons-react": "^11.3.0"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/lozenge": {
"version": "0.0.20",
"resolved": "https://registry.npmjs.org/@arch-ui/lozenge/-/lozenge-0.0.20.tgz",
"integrity": "sha512-opwEFFUAdD4PaLst13O65waXPBu4EsKnGqhv76D/0T1vezJT/uGy9VGAq9SlEDrWCJgL+KMtsJTlNyhQDDdQUA==",
"requires": {
"@arch-ui/theme": "0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/filters": {
"version": "0.0.20",
"resolved": "https://registry.npmjs.org/@arch-ui/filters/-/filters-0.0.20.tgz",
"integrity": "sha512-Up14Hv7Z9UE8Y9x7+VJLLN/8mgCMptE3Lix7xLUyOQLR59++AoUBvm+0P6ISKY1iiXR2ksmNAql++jUVyZ1idQ==",
"requires": {
"@arch-ui/controls": "^0.1.9",
"@arch-ui/layout": "^0.2.14",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"react-radios": "^1.1.0"
}
},
"@arch-ui/hooks": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/hooks/-/hooks-0.0.14.tgz",
"integrity": "sha512-IV6nRxRltZ1saG+ddFWfOM3SWNGuAzhRUFExoJTui/eDSTesFX1c/4wD277fkUnqph7Tsd772J4cesJ936Wj4g==",
"requires": {
"@babel/runtime": "^7.14.0",
"resize-observer-polyfill": "^1.5.1"
}
},
"@arch-ui/input": {
"version": "0.1.14",
"resolved": "https://registry.npmjs.org/@arch-ui/input/-/input-0.1.14.tgz",
"integrity": "sha512-jLtpt4XRvdD38ZXfjilRwxqCD+E2D4zyyTshUW2Ug+IkFkhWdtJsotvMvlTmDM4y9eNuTGCroViGf5NNRytLFg==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@arch-ui/common": "0.0.15",
"@arch-ui/theme": "0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/common": {
"version": "0.0.15",
"resolved": "https://registry.npmjs.org/@arch-ui/common/-/common-0.0.15.tgz",
"integrity": "sha512-jabroNHa1bGi9X4BCkOFJiuZ9pYhLBKF9dDpv0jrLI6fbF/S9I5Ljs70gtqjduxp4ApQ5NsAyLeVbHbRbn0edQ==",
"requires": {
"@arch-ui/theme": "^0.0.14"
}
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/layout": {
"version": "0.2.17",
"resolved": "https://registry.npmjs.org/@arch-ui/layout/-/layout-0.2.17.tgz",
"integrity": "sha512-+ux+Hr4tiqVFw+cNsxhw/egavfebQgfOPCQP5JbTomOwQCy6DXdXJeffG8nxZGC3raYaUacqZJSBiLBHO3Wuxg==",
"requires": {
"@arch-ui/common": "0.0.15",
"@arch-ui/theme": "0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/common": {
"version": "0.0.15",
"resolved": "https://registry.npmjs.org/@arch-ui/common/-/common-0.0.15.tgz",
"integrity": "sha512-jabroNHa1bGi9X4BCkOFJiuZ9pYhLBKF9dDpv0jrLI6fbF/S9I5Ljs70gtqjduxp4ApQ5NsAyLeVbHbRbn0edQ==",
"requires": {
"@arch-ui/theme": "^0.0.14"
}
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/loading": {
"version": "0.0.18",
"resolved": "https://registry.npmjs.org/@arch-ui/loading/-/loading-0.0.18.tgz",
"integrity": "sha512-EwBRIae0YBTk2Tkx+rEyidIEoCKfntJDoRSVQna7v5V744DxpleKDjquHlatPPehyRsNPPmDhPHGYGy1qq3MXQ==",
"requires": {
"@arch-ui/theme": "0.0.11",
"@arch-ui/typography": "0.0.18",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/lozenge": {
"version": "0.0.17",
"resolved": "https://registry.npmjs.org/@arch-ui/lozenge/-/lozenge-0.0.17.tgz",
"integrity": "sha512-L8+bm5LJk2QrooIi+QgCW4vw0AI6FyoKhHpPUyiTfIQfWwtRw3wdxe6dVnEuouBpdmcW/vXn2b4YJxaI9BuPjA==",
"requires": {
"@arch-ui/theme": "0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/modal-utils": {
"version": "1.0.16",
"resolved": "https://registry.npmjs.org/@arch-ui/modal-utils/-/modal-utils-1.0.16.tgz",
"integrity": "sha512-15foM+1NWVxfQHgqamsdpXWbjhU8SRY+cwnYpRSBXrENWg7wvjIiumYwwXgGGDJqXqJrmw1AIQyPSOGz8OwsxQ==",
"requires": {
"@arch-ui/color-utils": "^0.0.5",
"@arch-ui/theme": "^0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"react-scrolllock": "^5.0.1",
"react-transition-group": "^4.4.1"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/navbar": {
"version": "0.1.15",
"resolved": "https://registry.npmjs.org/@arch-ui/navbar/-/navbar-0.1.15.tgz",
"integrity": "sha512-s8Grx+DZwQxOJ9CKzWhcGFZryvH4ClPaT1cp9ytbAqnsFKSQLKYUM/ctQF3sAM26PP3AaJH8jrw27OcU3MxLBg==",
"requires": {
"@arch-ui/color-utils": "^0.0.5",
"@arch-ui/theme": "^0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"react-router-dom": "5.2.0"
},
"dependencies": {
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}
}
}
},
"@arch-ui/options": {
"version": "0.0.24",
"resolved": "https://registry.npmjs.org/@arch-ui/options/-/options-0.0.24.tgz",
"integrity": "sha512-SEU8hnEvYlhICnvpABDSoMsmce0poHulB6dS005lnTdc35DmqqdehlpwZb8CjC9Gv9i0BVb3nWf0fMF8CHR4Rw==",
"requires": {
"@arch-ui/common": "^0.0.12",
"@arch-ui/theme": "^0.0.11",
"@babel/runtime": "^7.11.2",
"@emotion/core": "^10.0.35",
"@primer/octicons-react": "^11.0.0",
"react-select": "^3.1.0"
}
},
"@arch-ui/pagination": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@arch-ui/pagination/-/pagination-0.0.29.tgz",
"integrity": "sha512-IzI0yBcBHTGJraEgNGM3bXndOWKlSpUkotlbNxq0ZwG6Nzk90VtMm+h66WQDN26IurxRtPTeO4UXcBT7xQJUkQ==",
"requires": {
"@arch-ui/button": "^0.0.25",
"@arch-ui/layout": "^0.2.17",
"@arch-ui/loading": "^0.0.21",
"@arch-ui/theme": "^0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@primer/octicons-react": "^11.3.0",
"react-router-dom": "5.2.0"
},
"dependencies": {
"@arch-ui/button": {
"version": "0.0.25",
"resolved": "https://registry.npmjs.org/@arch-ui/button/-/button-0.0.25.tgz",
"integrity": "sha512-gXliIxmnDRFjVO+GPSWrWj8lGWMVlJ4tyFFwu1NLPbwOe4G9sc4MAU718TRk7EnOKxnTJHPnLSJnDpoizh0PqQ==",
"requires": {
"@arch-ui/color-utils": "^0.0.5",
"@arch-ui/common": "^0.0.15",
"@arch-ui/loading": "^0.0.21",
"@arch-ui/theme": "^0.0.14",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"react-pseudo-state": "^2.2.2",
"react-router-dom": "5.2.0"
}
},
"@arch-ui/color-utils": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/@arch-ui/color-utils/-/color-utils-0.0.5.tgz",
"integrity": "sha512-BWRQmtBeyYpleivRavNbTrDqVV6ngXbtLPjAxJe1cX35KWdefF/Txy/2FX+y0d6PT9bs2DpZfWQKl75gDppfRA=="
},
"@arch-ui/common": {
"version": "0.0.15",
"resolved": "https://registry.npmjs.org/@arch-ui/common/-/common-0.0.15.tgz",
"integrity": "sha512-jabroNHa1bGi9X4BCkOFJiuZ9pYhLBKF9dDpv0jrLI6fbF/S9I5Ljs70gtqjduxp4ApQ5NsAyLeVbHbRbn0edQ==",
"requires": {
"@arch-ui/theme": "^0.0.14"
}
},
"@arch-ui/loading": {
"version": "0.0.21",
"resolved": "https://registry.npmjs.org/@arch-ui/loading/-/loading-0.0.21.tgz",
"integrity": "sha512-KY9+HpjmzhKdrm38KZlUAnLDb0jZgeZkeKAH3lNqbLr+Awp8E/AxtlDxMx2wkRKRkO4P3+ZNizj2nRR9YvcIGw==",
"requires": {
"@arch-ui/theme": "0.0.14",
"@arch-ui/typography": "0.0.21",
"@babel/runtime": "^7.14.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27"
}
},
"@arch-ui/theme": {
"version": "0.0.14",
"resolved": "https://registry.npmjs.org/@arch-ui/theme/-/theme-0.0.14.tgz",
"integrity": "sha512-90smzGSGEskn9juX1yvEoRedDCqGpYk8rusUHDznfe9pJTL4XXxdkdW1/uh7gwdF8kGNBXNJOr9+8fVY1eaGKw==",
"requires": {
"@arch-ui/color-utils": "0.0.5",
"@babel/runtime": "^7.14.0"
}