-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
14445 lines (14445 loc) · 530 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": "unique-hackday-site-2021",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.0.1",
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.1.0",
"@snowpack/plugin-react-refresh": "^2.5.0",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@testing-library/react": "^11.2.6",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/snowpack-env": "^2.3.3",
"@web/test-runner": "^0.13.3",
"chai": "^4.3.4",
"prettier": "^2.2.1",
"snowpack": "^3.3.7",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.2.4"
}
},
"node_modules/@babel/code-frame": {
"version": "7.12.13",
"resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.12.13.tgz",
"integrity": "sha1-3PyCa+72XnXFDiHTg319lXmN1lg=",
"license": "MIT",
"dependencies": {
"@babel/highlight": "^7.12.13"
}
},
"node_modules/@babel/compat-data": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.14.0.tgz?cache=0&sync_timestamp=1619727645372&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcompat-data%2Fdownload%2F%40babel%2Fcompat-data-7.14.0.tgz",
"integrity": "sha1-qQESi84q0CVl35Xm7L8ZXPlGWRk=",
"license": "MIT"
},
"node_modules/@babel/core": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/core/download/@babel/core-7.14.0.tgz?cache=0&sync_timestamp=1619727432493&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.14.0.tgz",
"integrity": "sha1-Rymf8+yNERtJPxqdBL+IwE5yjYg=",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/generator": "^7.14.0",
"@babel/helper-compilation-targets": "^7.13.16",
"@babel/helper-module-transforms": "^7.14.0",
"@babel/helpers": "^7.14.0",
"@babel/parser": "^7.14.0",
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.14.0",
"@babel/types": "^7.14.0",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.1.2",
"semver": "^6.3.0",
"source-map": "^0.5.0"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/core/node_modules/semver": {
"version": "6.3.0",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz",
"integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=",
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/generator": {
"version": "7.14.1",
"resolved": "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.1.tgz",
"integrity": "sha1-H5kzG6vWVwAYNijaGG829j1hXJM=",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.14.1",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.13.16",
"resolved": "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.13.16.tgz",
"integrity": "sha1-bpHczxXj9D5VVt/+MthgEJiHVjw=",
"license": "MIT",
"dependencies": {
"@babel/compat-data": "^7.13.15",
"@babel/helper-validator-option": "^7.12.17",
"browserslist": "^4.14.5",
"semver": "^6.3.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.0",
"resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz",
"integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=",
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-function-name": {
"version": "7.12.13",
"resolved": "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.12.13.tgz",
"integrity": "sha1-k61lbbPDwiMlWf17LD29y+DrN3o=",
"license": "MIT",
"dependencies": {
"@babel/helper-get-function-arity": "^7.12.13",
"@babel/template": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-get-function-arity": {
"version": "7.12.13",
"resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.12.13.tgz?cache=0&sync_timestamp=1612314686467&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.12.13.tgz",
"integrity": "sha1-vGNFHUA6OzCCuX4diz/lvUCR5YM=",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-member-expression-to-functions": {
"version": "7.13.12",
"resolved": "https://registry.npm.taobao.org/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.13.12.tgz?cache=0&sync_timestamp=1616428120148&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.13.12.tgz",
"integrity": "sha1-3+No8m1CagcpnY1lE4IXaCFubXI=",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.13.12"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.13.12",
"resolved": "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.13.12.tgz?cache=0&sync_timestamp=1616428110625&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.13.12.tgz",
"integrity": "sha1-xqNppvNiHLJdoBQHhoTakZa2GXc=",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.13.12"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.14.0.tgz?cache=0&sync_timestamp=1619727182606&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.14.0.tgz",
"integrity": "sha1-j894viIBVvImM+4gTqgfc/gmqK0=",
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.13.12",
"@babel/helper-replace-supers": "^7.13.12",
"@babel/helper-simple-access": "^7.13.12",
"@babel/helper-split-export-declaration": "^7.12.13",
"@babel/helper-validator-identifier": "^7.14.0",
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.14.0",
"@babel/types": "^7.14.0"
}
},
"node_modules/@babel/helper-optimise-call-expression": {
"version": "7.12.13",
"resolved": "https://registry.npm.taobao.org/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.12.13.tgz?cache=0&sync_timestamp=1612314636446&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.12.13.tgz",
"integrity": "sha1-XALRcbTIYVsecWP4iMHIHDCiquo=",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.13.0",
"resolved": "https://registry.npm.taobao.org/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.13.0.tgz?cache=0&sync_timestamp=1614034721464&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-plugin-utils%2Fdownload%2F%40babel%2Fhelper-plugin-utils-7.13.0.tgz",
"integrity": "sha1-gGUmzhJa7QM3O8QWqCgyHjpqM68=",
"license": "MIT"
},
"node_modules/@babel/helper-replace-supers": {
"version": "7.13.12",
"resolved": "https://registry.npm.taobao.org/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.13.12.tgz?cache=0&sync_timestamp=1616428121774&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.13.12.tgz",
"integrity": "sha1-ZEL0wa2RJQJIGlZKc4beDHf/OAQ=",
"license": "MIT",
"dependencies": {
"@babel/helper-member-expression-to-functions": "^7.13.12",
"@babel/helper-optimise-call-expression": "^7.12.13",
"@babel/traverse": "^7.13.0",
"@babel/types": "^7.13.12"
}
},
"node_modules/@babel/helper-simple-access": {
"version": "7.13.12",
"resolved": "https://registry.npm.taobao.org/@babel/helper-simple-access/download/@babel/helper-simple-access-7.13.12.tgz?cache=0&sync_timestamp=1616428121027&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.13.12.tgz",
"integrity": "sha1-3WxTivthgZ0gWgEsMXkqOcel6vY=",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.13.12"
}
},
"node_modules/@babel/helper-split-export-declaration": {
"version": "7.12.13",
"resolved": "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.12.13.tgz?cache=0&sync_timestamp=1612314636310&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.12.13.tgz",
"integrity": "sha1-6UML4AuvPoiw4T5vnU6vITY3KwU=",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.0.tgz?cache=0&sync_timestamp=1619727412592&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.14.0.tgz",
"integrity": "sha1-0mytikfGUoaxXfFUcxml0Lzycog=",
"license": "MIT"
},
"node_modules/@babel/helper-validator-option": {
"version": "7.12.17",
"resolved": "https://registry.npm.taobao.org/@babel/helper-validator-option/download/@babel/helper-validator-option-7.12.17.tgz?cache=0&sync_timestamp=1613661300791&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-validator-option%2Fdownload%2F%40babel%2Fhelper-validator-option-7.12.17.tgz",
"integrity": "sha1-0fvwEuGnm37rv9xtJwuq+NnrmDE=",
"license": "MIT"
},
"node_modules/@babel/helpers": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.14.0.tgz?cache=0&sync_timestamp=1619727432208&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.14.0.tgz",
"integrity": "sha1-6ptr6UeKE9b5Ydu182v3Xi87j2I=",
"license": "MIT",
"dependencies": {
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.14.0",
"@babel/types": "^7.14.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.0.tgz?cache=0&sync_timestamp=1619727182056&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.14.0.tgz",
"integrity": "sha1-MZfjdXEe9r+DTmfQ2uyI5PRhE88=",
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.0",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz?cache=0&sync_timestamp=1618995625950&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-styles%2Fdownload%2Fansi-styles-3.2.1.tgz",
"integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"license": "MIT",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995297666&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz",
"integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=",
"license": "MIT",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz",
"integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=",
"license": "MIT",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"license": "MIT"
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npm.taobao.org/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1618560998281&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz",
"integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=",
"license": "MIT",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/parser": {
"version": "7.14.1",
"resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.1.tgz",
"integrity": "sha1-G9ZEtds/V5fER52J7BgX/gK4TEc=",
"license": "MIT",
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-syntax-class-properties": {
"version": "7.12.13",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-syntax-class-properties/download/@babel/plugin-syntax-class-properties-7.12.13.tgz?cache=0&sync_timestamp=1612314770269&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fplugin-syntax-class-properties%2Fdownload%2F%40babel%2Fplugin-syntax-class-properties-7.12.13.tgz",
"integrity": "sha1-tcmHJ0xKOoK4lxR5aTGmtTVErhA=",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.12.13"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.12.13",
"resolved": "https://registry.npm.taobao.org/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.12.13.tgz",
"integrity": "sha1-BE+4HrrWaY/mLEeIdVdby7m3DxU=",
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.12.13"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/runtime/download/@babel/runtime-7.14.0.tgz?cache=0&sync_timestamp=1619727414495&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.14.0.tgz",
"integrity": "sha1-RnlLwgthLF915i3QceJN/ZXxy+Y=",
"license": "MIT",
"dependencies": {
"regenerator-runtime": "^0.13.4"
}
},
"node_modules/@babel/runtime-corejs3": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.14.0.tgz?cache=0&sync_timestamp=1619727725709&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fruntime-corejs3%2Fdownload%2F%40babel%2Fruntime-corejs3-7.14.0.tgz",
"integrity": "sha1-a/X7wLlh+OMgKIjLLND7egqaP2Y=",
"dev": true,
"license": "MIT",
"dependencies": {
"core-js-pure": "^3.0.0",
"regenerator-runtime": "^0.13.4"
}
},
"node_modules/@babel/template": {
"version": "7.12.13",
"resolved": "https://registry.npm.taobao.org/@babel/template/download/@babel/template-7.12.13.tgz",
"integrity": "sha1-UwJlvooliduzdSOETFvLVZR/syc=",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/parser": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/traverse": {
"version": "7.14.0",
"resolved": "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.0.tgz?cache=0&sync_timestamp=1619727392425&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.0.tgz",
"integrity": "sha1-zqDciufisd7GX1EvOfNIPozJWu8=",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/generator": "^7.14.0",
"@babel/helper-function-name": "^7.12.13",
"@babel/helper-split-export-declaration": "^7.12.13",
"@babel/parser": "^7.14.0",
"@babel/types": "^7.14.0",
"debug": "^4.1.0",
"globals": "^11.1.0"
}
},
"node_modules/@babel/types": {
"version": "7.14.1",
"resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.1.tgz",
"integrity": "sha1-CVvRLxwIq2Pv9uj3dF+nycwVqds=",
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.0",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@emotion/babel-plugin": {
"version": "11.3.0",
"resolved": "https://registry.npm.taobao.org/@emotion/babel-plugin/download/@emotion/babel-plugin-11.3.0.tgz",
"integrity": "sha1-OhaFC6BNjZZR8H8/tnSzQ2pPudc=",
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.12.13",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/runtime": "^7.13.10",
"@emotion/hash": "^0.8.0",
"@emotion/memoize": "^0.7.5",
"@emotion/serialize": "^1.0.2",
"babel-plugin-macros": "^2.6.1",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "^4.0.3"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": {
"version": "4.0.0",
"resolved": "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz",
"integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=",
"license": "MIT",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@emotion/cache": {
"version": "11.4.0",
"resolved": "https://registry.nlark.com/@emotion/cache/download/@emotion/cache-11.4.0.tgz",
"integrity": "sha1-KT/J2aeji5qtjpM35QFDZsOwmsA=",
"license": "MIT",
"dependencies": {
"@emotion/memoize": "^0.7.4",
"@emotion/sheet": "^1.0.0",
"@emotion/utils": "^1.0.0",
"@emotion/weak-memoize": "^0.2.5",
"stylis": "^4.0.3"
}
},
"node_modules/@emotion/hash": {
"version": "0.8.0",
"resolved": "https://registry.npm.taobao.org/@emotion/hash/download/@emotion/hash-0.8.0.tgz",
"integrity": "sha1-u7/2iXj+/b5ozLUzvIy+HRr7VBM=",
"license": "MIT"
},
"node_modules/@emotion/is-prop-valid": {
"version": "1.1.0",
"resolved": "https://registry.npm.taobao.org/@emotion/is-prop-valid/download/@emotion/is-prop-valid-1.1.0.tgz?cache=0&sync_timestamp=1612610319310&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40emotion%2Fis-prop-valid%2Fdownload%2F%40emotion%2Fis-prop-valid-1.1.0.tgz",
"integrity": "sha1-Ke9r4elG+0c5+XB974YPMW9mjN4=",
"license": "MIT",
"dependencies": {
"@emotion/memoize": "^0.7.4"
}
},
"node_modules/@emotion/memoize": {
"version": "0.7.5",
"resolved": "https://registry.npm.taobao.org/@emotion/memoize/download/@emotion/memoize-0.7.5.tgz?cache=0&sync_timestamp=1615986337535&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40emotion%2Fmemoize%2Fdownload%2F%40emotion%2Fmemoize-0.7.5.tgz",
"integrity": "sha1-LED4FEmk5VTp/GOWkQ7UhD7CvlA=",
"license": "MIT"
},
"node_modules/@emotion/react": {
"version": "11.4.0",
"resolved": "https://registry.nlark.com/@emotion/react/download/@emotion/react-11.4.0.tgz?cache=0&sync_timestamp=1620348776949&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40emotion%2Freact%2Fdownload%2F%40emotion%2Freact-11.4.0.tgz",
"integrity": "sha1-JGWtewc6aRQJuI39ltwXCX3a2bc=",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@emotion/cache": "^11.4.0",
"@emotion/serialize": "^1.0.2",
"@emotion/sheet": "^1.0.1",
"@emotion/utils": "^1.0.0",
"@emotion/weak-memoize": "^0.2.5",
"hoist-non-react-statics": "^3.3.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/serialize": {
"version": "1.0.2",
"resolved": "https://registry.npm.taobao.org/@emotion/serialize/download/@emotion/serialize-1.0.2.tgz?cache=0&sync_timestamp=1617886937004&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40emotion%2Fserialize%2Fdownload%2F%40emotion%2Fserialize-1.0.2.tgz",
"integrity": "sha1-d8shoFccn2jrZgh3VKZfqXv82WU=",
"license": "MIT",
"dependencies": {
"@emotion/hash": "^0.8.0",
"@emotion/memoize": "^0.7.4",
"@emotion/unitless": "^0.7.5",
"@emotion/utils": "^1.0.0",
"csstype": "^3.0.2"
}
},
"node_modules/@emotion/sheet": {
"version": "1.0.1",
"resolved": "https://registry.npm.taobao.org/@emotion/sheet/download/@emotion/sheet-1.0.1.tgz",
"integrity": "sha1-JF9Uq7At/YIybihonzTCeqmyppg=",
"license": "MIT"
},
"node_modules/@emotion/styled": {
"version": "11.3.0",
"resolved": "https://registry.npm.taobao.org/@emotion/styled/download/@emotion/styled-11.3.0.tgz",
"integrity": "sha1-1j7gBTfftv9hLjGw6RXFz5klogc=",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/is-prop-valid": "^1.1.0",
"@emotion/serialize": "^1.0.2",
"@emotion/utils": "^1.0.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"@emotion/react": "^11.0.0-rc.0",
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/unitless": {
"version": "0.7.5",
"resolved": "https://registry.npm.taobao.org/@emotion/unitless/download/@emotion/unitless-0.7.5.tgz?cache=0&sync_timestamp=1615986337961&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40emotion%2Funitless%2Fdownload%2F%40emotion%2Funitless-0.7.5.tgz",
"integrity": "sha1-dyESkcGQCnALinjPr9oxYNdpSe0=",
"license": "MIT"
},
"node_modules/@emotion/utils": {
"version": "1.0.0",
"resolved": "https://registry.npm.taobao.org/@emotion/utils/download/@emotion/utils-1.0.0.tgz",
"integrity": "sha1-q+BqgxYLEFcIFskTmQJFgTov1q8=",
"license": "MIT"
},
"node_modules/@emotion/weak-memoize": {
"version": "0.2.5",
"resolved": "https://registry.npm.taobao.org/@emotion/weak-memoize/download/@emotion/weak-memoize-0.2.5.tgz",
"integrity": "sha1-ju2YLi7m9/TkTCU+EpYpgHke/UY=",
"license": "MIT"
},
"node_modules/@jest/types": {
"version": "26.6.2",
"resolved": "https://registry.npm.taobao.org/@jest/types/download/@jest/types-26.6.2.tgz?cache=0&sync_timestamp=1618267726447&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40jest%2Ftypes%2Fdownload%2F%40jest%2Ftypes-26.6.2.tgz",
"integrity": "sha1-vvWlMgMOHYii9abZM/hOlyJu1I4=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/node": "*",
"@types/yargs": "^15.0.0",
"chalk": "^4.0.0"
},
"engines": {
"node": ">= 10.14.2"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.4",
"resolved": "https://registry.npm.taobao.org/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.4.tgz?cache=0&sync_timestamp=1609074594471&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40nodelib%2Ffs.scandir%2Fdownload%2F%40nodelib%2Ffs.scandir-2.1.4.tgz",
"integrity": "sha1-1LNUml213iaD4MEHGrTxQJBLv2k=",
"dev": true,
"license": "MIT",
"dependencies": {
"@nodelib/fs.stat": "2.0.4",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.4",
"resolved": "https://registry.npm.taobao.org/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.4.tgz?cache=0&sync_timestamp=1609074429033&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-2.0.4.tgz",
"integrity": "sha1-o/LdYbq0O424+hCKEhz//kxnZlU=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.6",
"resolved": "https://registry.npm.taobao.org/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.6.tgz?cache=0&sync_timestamp=1609077069715&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40nodelib%2Ffs.walk%2Fdownload%2F%40nodelib%2Ffs.walk-1.2.6.tgz",
"integrity": "sha1-zOk5azCqWv6eN1Zgj1gxrctT0GM=",
"dev": true,
"license": "MIT",
"dependencies": {
"@nodelib/fs.scandir": "2.1.4",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@npmcli/git": {
"version": "2.0.9",
"resolved": "https://registry.nlark.com/@npmcli/git/download/@npmcli/git-2.0.9.tgz",
"integrity": "sha1-kVu/5mMA5ntNpe92WkR1/7LKW2s=",
"dev": true,
"license": "ISC",
"dependencies": {
"@npmcli/promise-spawn": "^1.3.2",
"lru-cache": "^6.0.0",
"mkdirp": "^1.0.4",
"npm-pick-manifest": "^6.1.1",
"promise-inflight": "^1.0.1",
"promise-retry": "^2.0.1",
"semver": "^7.3.5",
"which": "^2.0.2"
}
},
"node_modules/@npmcli/installed-package-contents": {
"version": "1.0.7",
"resolved": "https://registry.npm.taobao.org/@npmcli/installed-package-contents/download/@npmcli/installed-package-contents-1.0.7.tgz",
"integrity": "sha1-q3QIxhR5EblwqKviYc5RIjKj9Po=",
"dev": true,
"license": "ISC",
"dependencies": {
"npm-bundled": "^1.1.1",
"npm-normalize-package-bin": "^1.0.1"
},
"bin": {
"installed-package-contents": "index.js"
},
"engines": {
"node": ">= 10"
}
},
"node_modules/@npmcli/move-file": {
"version": "1.1.2",
"resolved": "https://registry.npm.taobao.org/@npmcli/move-file/download/@npmcli/move-file-1.1.2.tgz",
"integrity": "sha1-GoLD43L3yuklPrZtclQ9a4aFxnQ=",
"dev": true,
"license": "MIT",
"dependencies": {
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@npmcli/node-gyp": {
"version": "1.0.2",
"resolved": "https://registry.npm.taobao.org/@npmcli/node-gyp/download/@npmcli/node-gyp-1.0.2.tgz",
"integrity": "sha1-PNwfMOlzbbxBc3PtgDtCsaCint4=",
"dev": true,
"license": "ISC"
},
"node_modules/@npmcli/promise-spawn": {
"version": "1.3.2",
"resolved": "https://registry.npm.taobao.org/@npmcli/promise-spawn/download/@npmcli/promise-spawn-1.3.2.tgz",
"integrity": "sha1-QtTlao6SdPuhgNq8CupuOPKSdPU=",
"dev": true,
"license": "ISC",
"dependencies": {
"infer-owner": "^1.0.4"
}
},
"node_modules/@npmcli/run-script": {
"version": "1.8.5",
"resolved": "https://registry.nlark.com/@npmcli/run-script/download/@npmcli/run-script-1.8.5.tgz?cache=0&sync_timestamp=1619109642708&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40npmcli%2Frun-script%2Fdownload%2F%40npmcli%2Frun-script-1.8.5.tgz",
"integrity": "sha1-8lCgxeGginktd1oxXQ/0L8OlHh0=",
"dev": true,
"license": "ISC",
"dependencies": {
"@npmcli/node-gyp": "^1.0.2",
"@npmcli/promise-spawn": "^1.3.2",
"infer-owner": "^1.0.4",
"node-gyp": "^7.1.0",
"read-package-json-fast": "^2.0.1"
}
},
"node_modules/@rollup/plugin-node-resolve": {
"version": "11.2.1",
"resolved": "https://registry.nlark.com/@rollup/plugin-node-resolve/download/@rollup/plugin-node-resolve-11.2.1.tgz",
"integrity": "sha1-gqpZOXopzU4TJIsQbmpKGIA2KmA=",
"dev": true,
"license": "MIT",
"dependencies": {
"@rollup/pluginutils": "^3.1.0",
"@types/resolve": "1.17.1",
"builtin-modules": "^3.1.0",
"deepmerge": "^4.2.2",
"is-module": "^1.0.0",
"resolve": "^1.19.0"
},
"engines": {
"node": ">= 10.0.0"
},
"peerDependencies": {
"rollup": "^1.20.0||^2.0.0"
}
},
"node_modules/@rollup/pluginutils": {
"version": "3.1.0",
"resolved": "https://registry.npm.taobao.org/@rollup/pluginutils/download/@rollup/pluginutils-3.1.0.tgz",
"integrity": "sha1-cGtFJO5tyLEDs8mVUz5a1oDAK5s=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/estree": "0.0.39",
"estree-walker": "^1.0.1",
"picomatch": "^2.2.2"
},
"engines": {
"node": ">= 8.0.0"
},
"peerDependencies": {
"rollup": "^1.20.0||^2.0.0"
}
},
"node_modules/@snowpack/plugin-dotenv": {
"version": "2.1.0",
"resolved": "https://registry.npm.taobao.org/@snowpack/plugin-dotenv/download/@snowpack/plugin-dotenv-2.1.0.tgz",
"integrity": "sha1-2sdwB79lf5mdIiMYUGqFD9fRaHU=",
"dev": true,
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0"
}
},
"node_modules/@snowpack/plugin-react-refresh": {
"version": "2.5.0",
"resolved": "https://registry.nlark.com/@snowpack/plugin-react-refresh/download/@snowpack/plugin-react-refresh-2.5.0.tgz",
"integrity": "sha1-5K0VYexKzZqHYxjLHo0F9mtOEdQ=",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-class-properties": "^7.10.0",
"react-refresh": "^0.9.0"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
},
"node_modules/@snowpack/plugin-typescript": {
"version": "1.2.1",
"resolved": "https://registry.npm.taobao.org/@snowpack/plugin-typescript/download/@snowpack/plugin-typescript-1.2.1.tgz",
"integrity": "sha1-cXCwOdFtQZY8xhpxT+fDfz/dnVE=",
"dev": true,
"license": "MIT",
"dependencies": {
"execa": "^5.0.0",
"npm-run-path": "^4.0.1"
},
"peerDependencies": {
"typescript": "*"
}
},
"node_modules/@snowpack/web-test-runner-plugin": {
"version": "0.2.2",
"resolved": "https://registry.npm.taobao.org/@snowpack/web-test-runner-plugin/download/@snowpack/web-test-runner-plugin-0.2.2.tgz",
"integrity": "sha1-P/JMZ9GvQl6c990aX9LgeokkLpc=",
"dev": true,
"license": "MIT",
"peerDependencies": {
"@web/test-runner": ">=0.10.0 <1.0.0",
"snowpack": "^3.0.0"
}
},
"node_modules/@stylelint/postcss-css-in-js": {
"version": "0.37.2",
"resolved": "https://registry.npm.taobao.org/@stylelint/postcss-css-in-js/download/@stylelint/postcss-css-in-js-0.37.2.tgz",
"integrity": "sha1-flqErRgfQjSiSAgDQipHuHSa89I=",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/core": ">=7.9.0"
},
"peerDependencies": {
"postcss": ">=7.0.0",
"postcss-syntax": ">=0.36.2"
}
},
"node_modules/@stylelint/postcss-markdown": {
"version": "0.36.2",
"resolved": "https://registry.nlark.com/@stylelint/postcss-markdown/download/@stylelint/postcss-markdown-0.36.2.tgz",
"integrity": "sha1-ClQMRpL43N/BPI41LBfnv+4rs5E=",
"dev": true,
"license": "MIT",
"dependencies": {
"remark": "^13.0.0",
"unist-util-find-all-after": "^3.0.2"
},
"peerDependencies": {
"postcss": ">=7.0.0",
"postcss-syntax": ">=0.36.2"
}
},
"node_modules/@testing-library/dom": {
"version": "7.30.4",
"resolved": "https://registry.nlark.com/@testing-library/dom/download/@testing-library/dom-7.30.4.tgz?cache=0&sync_timestamp=1619095772325&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40testing-library%2Fdom%2Fdownload%2F%40testing-library%2Fdom-7.30.4.tgz",
"integrity": "sha1-xqSpFVfpIDX9VlJGu7+4EHqkY00=",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/runtime": "^7.12.5",
"@types/aria-query": "^4.2.0",
"aria-query": "^4.2.2",
"chalk": "^4.1.0",
"dom-accessibility-api": "^0.5.4",
"lz-string": "^1.4.4",
"pretty-format": "^26.6.2"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@testing-library/react": {
"version": "11.2.6",
"resolved": "https://registry.npm.taobao.org/@testing-library/react/download/@testing-library/react-11.2.6.tgz?cache=0&sync_timestamp=1617099955190&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40testing-library%2Freact%2Fdownload%2F%40testing-library%2Freact-11.2.6.tgz",
"integrity": "sha1-WGojrcY2FZhdhb4MkD83TasZIAs=",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@testing-library/dom": "^7.28.1"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
},
"node_modules/@tootallnate/once": {
"version": "1.1.2",
"resolved": "https://registry.npm.taobao.org/@tootallnate/once/download/@tootallnate/once-1.1.2.tgz",
"integrity": "sha1-zLkURTYBeaBOf+av94wA/8Hur4I=",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 6"
}
},
"node_modules/@types/accepts": {
"version": "1.3.5",
"resolved": "https://registry.npm.taobao.org/@types/accepts/download/@types/accepts-1.3.5.tgz",
"integrity": "sha1-w0vsEVz8dG4E/loFnfTOfns5FXU=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/aria-query": {
"version": "4.2.1",
"resolved": "https://registry.npm.taobao.org/@types/aria-query/download/@types/aria-query-4.2.1.tgz",
"integrity": "sha1-eLVDM0Ti+S6LMGwGpWIsUMJFv2s=",
"dev": true,
"license": "MIT"
},
"node_modules/@types/body-parser": {
"version": "1.19.0",
"resolved": "https://registry.npm.taobao.org/@types/body-parser/download/@types/body-parser-1.19.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fbody-parser%2Fdownload%2F%40types%2Fbody-parser-1.19.0.tgz",
"integrity": "sha1-BoWzxH6zAG/+0RfN1VFkth+AU48=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/connect": "*",
"@types/node": "*"
}
},
"node_modules/@types/chai": {
"version": "4.2.18",
"resolved": "https://registry.nlark.com/@types/chai/download/@types/chai-4.2.18.tgz?cache=0&sync_timestamp=1620433986484&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fchai%2Fdownload%2F%40types%2Fchai-4.2.18.tgz",
"integrity": "sha1-DI4pjb/4IF4iZmBsHqX726KbRuQ=",
"dev": true,
"license": "MIT"
},
"node_modules/@types/co-body": {
"version": "5.1.0",
"resolved": "https://registry.npm.taobao.org/@types/co-body/download/@types/co-body-5.1.0.tgz",
"integrity": "sha1-acUF3XWdYZqMeLGogiLmMBTJ9Bc=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/node": "*",
"@types/qs": "*"
}
},
"node_modules/@types/command-line-args": {
"version": "5.0.0",
"resolved": "https://registry.npm.taobao.org/@types/command-line-args/download/@types/command-line-args-5.0.0.tgz",
"integrity": "sha1-SE5wTSDbuHVKjwke7kXN0ivP8ow=",
"dev": true,
"license": "MIT"
},
"node_modules/@types/connect": {
"version": "3.4.34",
"resolved": "https://registry.npm.taobao.org/@types/connect/download/@types/connect-3.4.34.tgz",
"integrity": "sha1-FwpAIjptZmAG2TyhKK8r6x2bGQE=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/content-disposition": {
"version": "0.5.3",
"resolved": "https://registry.npm.taobao.org/@types/content-disposition/download/@types/content-disposition-0.5.3.tgz",
"integrity": "sha1-CqEWcBlVwvqgcX/GnNFZYJXknZY=",
"dev": true,
"license": "MIT"
},
"node_modules/@types/convert-source-map": {
"version": "1.5.1",
"resolved": "https://registry.nlark.com/@types/convert-source-map/download/@types/convert-source-map-1.5.1.tgz",
"integrity": "sha1-1NGA3WrcXLaK2ZvVbgPWN4gfRhY=",
"dev": true,
"license": "MIT"
},
"node_modules/@types/cookies": {
"version": "0.7.6",
"resolved": "https://registry.npm.taobao.org/@types/cookies/download/@types/cookies-0.7.6.tgz",
"integrity": "sha1-cSEsU5GpdtO65X1LCfrCD8a9pQQ=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/connect": "*",
"@types/express": "*",
"@types/keygrip": "*",
"@types/node": "*"
}
},
"node_modules/@types/debounce": {
"version": "1.2.0",
"resolved": "https://registry.npm.taobao.org/@types/debounce/download/@types/debounce-1.2.0.tgz",
"integrity": "sha1-numSWfQQGMZAs5KeG7MsPc7NsZI=",
"dev": true,
"license": "MIT"
},
"node_modules/@types/estree": {
"version": "0.0.39",
"resolved": "https://registry.npm.taobao.org/@types/estree/download/@types/estree-0.0.39.tgz?cache=0&sync_timestamp=1616657669679&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Festree%2Fdownload%2F%40types%2Festree-0.0.39.tgz",
"integrity": "sha1-4Xfmme4bjCLSMXTKqnQiZEOJUJ8=",
"dev": true,
"license": "MIT"
},
"node_modules/@types/express": {
"version": "4.17.11",
"resolved": "https://registry.npm.taobao.org/@types/express/download/@types/express-4.17.11.tgz",
"integrity": "sha1-3r48qm+OX82pa0e9VOL0DE7llUU=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "^4.17.18",
"@types/qs": "*",
"@types/serve-static": "*"
}
},
"node_modules/@types/express-serve-static-core": {
"version": "4.17.19",
"resolved": "https://registry.npm.taobao.org/@types/express-serve-static-core/download/@types/express-serve-static-core-4.17.19.tgz?cache=0&sync_timestamp=1615830641235&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fexpress-serve-static-core%2Fdownload%2F%40types%2Fexpress-serve-static-core-4.17.19.tgz",
"integrity": "sha1-AKz8FjLnKaysTxUw6eFvbdFQih0=",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*"
}
},
"node_modules/@types/http-assert": {
"version": "1.5.1",
"resolved": "https://registry.npm.taobao.org/@types/http-assert/download/@types/http-assert-1.5.1.tgz",
"integrity": "sha1-13XpNjDCRpwvmA/CfjFDJAM12zs=",
"dev": true,