-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
executable file
·14233 lines (14233 loc) · 335 KB
/
data.js
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
export default [
{
recipeImage: "",
recipeTitle: "Fusilli with Spicy Pesto",
servingSize: "4-6",
totalTime: "20 minutes",
dailyMeal: "lunch, dinner",
protein: "vegetarian",
cuisine: "italian",
season: "spring, summer, fall, winter",
course: "pasta",
keywords: "comfort food, favorite",
authorNote: "",
ingredients: [
{
id: 1,
quantity: "1",
unit: "c",
name: "Chopped walnuts",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 2,
quantity: "2",
unit: "",
name: "Garlic cloves",
prep: "coarsely chopped",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 3,
quantity: "1",
unit: "",
name: "Red or green jalapeño pepper",
prep: "stemmed and coarsely chopped",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 4,
quantity: "2",
unit: "c",
name: "Asiago cheese",
prep: "grated",
additional: {
quantity: "0.5",
unit: "c",
note: "shaved, to top",
},
},
{
id: 5,
quantity: "2",
unit: "tsp",
name: "salt",
prep: "",
additional: {
quantity: "",
unit: "",
note: "more to taste",
},
},
{
id: 6,
quantity: "1",
unit: "tsp",
name: "Freshly ground black pepper",
prep: "",
additional: {
quantity: "",
unit: "",
note: "more to taste",
},
},
{
id: 7,
quantity: "2",
unit: "c",
name: "Baby spinach",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 8,
quantity: "3",
unit: "c",
name: "Arugula",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 9,
quantity: "0.25",
unit: "c",
name: "Olive oil",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 10,
quantity: "1",
unit: "lbs",
name: "Fusilli pasta",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
],
steps: [
{
id: 1,
instruction:
"In a food processor, combine the walnuts (1 cup), garlic (2 cloves), jalapeño (1), grated cheese (2 cups), salt (2 tsp), and pepper (1 tsp). Process until the mixture is smooth Add the spinach (2 cups) and arugula (3 cups) and process until blended. With the machine running, gradually add the olive oil (1/4 cup).",
},
{
id: 2,
instruction:
"Bring a large pot of salted water to a boil over high heat. Add the pasta (1 lbs) and cook, stirring occasionally, until tender but still firm to the bite, 8 to 10 minutes. Drain the pasta, reserving about 1 cup of the pasta water. Transfer the cooked pasta to a large serving bowl and add the pesto. Toss well. If you needed, thin out the sauce with a little pasta water and season with salt and pepper.",
},
{
id: 3,
instruction: "Garnish with the Asiago cheese (1/2 cup) shavings and serve.",
},
],
cookbook: {
title: "Giada at Home",
author: "Giada de Laurentiis",
thumbnail: "",
amazonLink: "",
},
slug: "fusilli-with-spicy-pesto_giada-de-laurentiis",
id: 93,
},
{
id: 92,
recipeImage: "",
recipeTitle: "Penne with Treviso and Goat Cheese",
servingSize: "4-6",
totalTime: "20 minutes",
dailyMeal: "lunch dinner",
protein: "vegetarian",
cuisine: "italian",
season: "spring summer fall winter",
course: "pasta main side",
keywords: "",
authorNote: "",
ingredients: [
{
id: 1,
quantity: "1",
unit: "lbs",
name: "Penne pasta",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 2,
quantity: "1/4",
unit: "cup",
name: "Olive oil",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 3,
quantity: "1",
unit: "",
name: "Garlic clove",
prep: "halved",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 4,
quantity: "1 pound",
unit: "",
name: "Treviso (or radicchio)",
prep: "chopped (about 4 cups)",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 5,
quantity: "3 cups (5 oz)",
unit: "",
name: "Baby spinach",
prep: "packed cups",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 6,
quantity: "1/2 cup",
unit: "",
name: "Chicken broth",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 7,
quantity: "1/4 cup",
unit: "",
name: "Balsamic vinegar",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 8,
quantity: "2 tbsp",
unit: "",
name: "Fresh lemon juice",
prep: "from 1 lemon",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 9,
quantity: "1/2 tsp",
unit: "",
name: "Crushed Red Pepper Flakes",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 10,
quantity: "1 tbsp",
unit: "",
name: "Salt",
prep: "and more to taste",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 11,
quantity: "1-1/2 cups",
unit: "",
name: "Parmesan cheese",
prep: "freshly grated",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 12,
quantity: "1-1/2 cups",
unit: "",
name: "Goat cheese",
prep: "crumbled",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 13,
quantity: "1/2 cup",
unit: "",
name: "Fresh basil leaves",
prep: "torn",
additional: {
quantity: "",
unit: "",
note: "",
},
},
],
steps: [
{
id: 1,
instruction:
"Bringe a large pot of salted water to a boil over high heat. Add the pasta and cook, stirring occasionally, until tender but still firm to the bite, 8 to 10 minutes.",
},
{
id: 2,
instruction:
"Meanwhile, in a 12-inch skillet, heat the oil (1/4 cup) over medium heat. Add the garlic (1 clove) and cook until fragrant and golden, about 1 minute. Remove the garlic and discard.",
},
{
id: 3,
instruction:
"Add the treviso (1 lbs), spinach (3 cups), chicken broth (1/2 cup), balsamic vinegar (1/4 cup), lemon juice (2 tablespoons), red pepper flakes (1/2 teaspoon), and salt (1 tablespoon). Cook until the treviso and spinach wilt, 6 to 8 minutes.",
},
{
id: 4,
instruction:
"Drain the pasta, reserving about 1 cup of the pasta water. Add the pasta and Parmesan cheese (1-1/2 cup) to the skillet. Toss well, thinning out the sauce with a little pasta water, if needed. Season with salt, if needed.",
},
{
id: 5,
instruction:
"Transfer the penne to serving bowls. Top each portion with the crumbled goat cheese (1-1/2 cups) and garnish with basil (1/2 cup) before serving.",
},
],
cookbook: {
title: "Giada at Home",
author: "Giada de Laurentiis",
thumbnail: "",
amazonLink: "",
},
},
{
id: 91,
recipeImage: "",
recipeTitle: "Rigatoni with Creamy Mushroom Sauce",
servingSize: "4-6",
totalTime: "25 minutes",
dailyMeal: "lunch dinner",
protein: "vegetarian",
cuisine: "italian",
season: "spring summer fall winter",
course: "main side pasta",
keywords: "comfort food",
authorNote: "",
ingredients: [
{
id: 1,
quantity: "1 lbs",
unit: "",
name: "Rigatoni pasta",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 2,
quantity: "1 tbsp",
unit: "",
name: "Olive oil",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 3,
quantity: "2",
unit: "",
name: "Shallots",
prep: "minced",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 4,
quantity: "1",
unit: "",
name: "Garlic clove",
prep: "minced",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 5,
quantity: "",
unit: "",
name: "Salt and freshly ground black pepper",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 6,
quantity: "1 lbs",
unit: "",
name: "Assorted mushrooms (cremini, shiitake, or button)",
prep: "cleaned and sliced",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 7,
quantity: "1/2 cup",
unit: "",
name: "Dry white wine",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 8,
quantity: "1/2 cup",
unit: "",
name: "Vegetable broth",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 9,
quantity: "8 oz (1 cup)",
unit: "",
name: "Mascarpone cheese",
prep: "at room temperature",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 10,
quantity: "1/2 cup",
unit: "",
name: "Freshly grated Parmesan cheese",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 11,
quantity: "1/4 cup",
unit: "",
name: "Fresh chives",
prep: "chopped",
additional: {
quantity: "",
unit: "",
note: "",
},
},
],
steps: [
{
id: 1,
instruction:
"Bring a large pot of salted water to a boil over high heat. Add the pasta (1 lbs) and cook, stirring occasionally, until tender but still firm to the bite, 8 to 10 minutes.",
},
{
id: 2,
instruction:
"Meanwhile, heat the oil (1 tbsp) in a large skillet over medium-high heat. Add the shallots (2) and garlic (1 clove) and season with salt and pepper. Cook until soft, about 2 minutes. Add the mushrooms (1 lbs) and season with salt and pepper. Cook, stirring occasionally, until the mushrooms are tender, 5 to 7 minutes. Turn the heat to high. Add the wine (1/2 cup) and cook for 3 minutes, or until all the liquid evaporates. Add the broth (1/2 cup) and simmer until the liquid is slightly reduced.",
},
{
id: 3,
instruction:
"Remove the pan from the heat. Add the mascarpone cheese (1 cup) and stir until creamy. Drain the pasta, reserving about 1 cup of the pasta water, and transfer to a serving bowl. Add the mushroom mixture and the Parmasen (1/2 cup). Season with salt and pepper and toss well to coat the pasta, adding the reserved pasta water, if needed, to loosen the pasta. Garnish with the chopped chives (1/4 cup).",
},
],
cookbook: {
title: "Giada at Home",
author: "Giada de Laurentiis",
thumbnail: "",
amazonLink: "",
},
},
{
id: 90,
recipeImage: "",
recipeTitle: "Bucatini all'Amatriciana with Spicy Smoked Mozzarella Meatballs",
servingSize: "4-6",
totalTime: "45 minutes",
dailyMeal: "lunch dinner",
protein: "beef veal",
cuisine: "italian",
season: "spring summer fall winter",
course: "main side pasta",
keywords: "comfort food",
authorNote:
"Chef's tip: First, make the meatballs and preheat the oven. Then make the sauce. While the sauce simmers, bake the meatballs in the oven and boil the pasta. This way everything is ready at the same time.",
ingredients: [
{
id: 1,
quantity: "2 tbsp",
unit: "",
name: "Olive oil",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 2,
quantity: "6 oz",
unit: "",
name: "Pancetta",
prep: "diced",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 3,
quantity: "1",
unit: "",
name: "Yellow onion",
prep: "finely chopped",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 4,
quantity: "2",
unit: "",
name: "Garlic cloves",
prep: "minced",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 5,
quantity: "Pinch",
unit: "",
name: "crushed red pepper flakes",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 6,
quantity: "14 oz (1 can)",
unit: "",
name: "Crushed tomatoes",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 7,
quantity: "1/2 tsp",
unit: "",
name: "Salt",
prep: "or more to taste",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 8,
quantity: "1/2 tsp",
unit: "",
name: "Freshly ground black pepper",
prep: "or more to taste",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 9,
quantity: "1/2 cup",
unit: "",
name: "Pecorino Romano cheese",
prep: "grated",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 10,
quantity: "1",
unit: "",
name: "Small onion",
prep: "grated",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 11,
quantity: "3/4 cup",
unit: "",
name: "Fresh flat-leafed parsley leaves",
prep: "chopped",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 12,
quantity: "2/3 cup (plus 1/4 cup to top)",
unit: "",
name: "Parmesan cheese",
prep: "freshly grated",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 13,
quantity: "1/3 cup",
unit: "",
name: "Dried bread crumbs",
prep: "seasoned Italian-style",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 14,
quantity: "1",
unit: "",
name: "Large egg",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 15,
quantity: "2 tbsp",
unit: "",
name: "Ketchup",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 16,
quantity: "3",
unit: "",
name: "Garlic cloves",
prep: "minced",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 17,
quantity: "1/4 tsp",
unit: "",
name: "Crushed red pepper flakes",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 18,
quantity: "1 tsp",
unit: "",
name: "Salt",
prep: "or more for taste",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 19,
quantity: "1/2 tsp",
unit: "",
name: "Freshly ground black pepper",
prep: "or more for taste",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 20,
quantity: "8 oz",
unit: "",
name: "Ground beef",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 21,
quantity: "8 oz",
unit: "",
name: "Ground veal",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 22,
quantity: "2 oz",
unit: "",
name: "Smoked mozzarella cheese",
prep: "cut into 16 (1/2-inch) cubes",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 23,
quantity: "1 lbs",
unit: "",
name: "Bucatini or other long pasta",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
],
steps: [
{
id: 1,
instruction:
"For the sauce: In a large, heavy skillet, heat the oil (2 tbsp) over medium heat. Add the pancetta (6 oz) and cook, stirring constantly, until golden brown, 5 to 7 minutes. Using a slotted spoon, remove the pancetta and set aside.",
},
{
id: 2,
instruction:
"Add the onion (1) to the skillet and cook for 5 minutes. Stir in the garlic (2 cloves) and red pepper flakes (pinch) and cook until fragrant, about 30 seconds. Add the tomatoes (14 oz), salt (1/2 tsp), black pepper (1/2 tsp), and the cooked pancetta. Simmer, uncovered, over medium-low heat until the sauce thickens, about 15 minutes. Stir in the Pecorino Romano cheese (1/2 cup) and season with salt and pepper, if needed.",
},
{
id: 3,
instruction:
"For the meatballs: Position an oven rack in the lower third of the oven and preheat the oven to 400˚F/200˚C. Line a rimmed baking sheet with parchment paper.",
},
{
id: 4,
instruction:
"In a large bowl, combine the onion (1), 1/2 cup of the parsley, 2/3 cup of the Parmesan cheese, the bread crumbs (1/3 cup), egg (1), ketchup (2 tbsp), garlic (3 cloves), red pepper flakes (1/4 tsp), salt (1 tsp), and pepper (1/2 tsp). Add the beef (8 oz) and veal (8 oz). Using your hands, combine the ingredients gently but thoroughly. Shape the meat mixture into 16 1-1/2-inch diameter meatballs and place on the prepared baking sheet. Make a depression in the center of each meatball and place a cube of mozzarella inside. Re-form the meatball so that the mozarealla is completely covered with the meat mixture.",
},
{
id: 5,
instruction: "Bake the meatballs for 15 minutes, or until cooked through.",
},
{
id: 6,
instruction:
"Meawhile, bring a large pot of salted water to a boil over high heat. Add the pasta (1 pound) and cook until tender but still firm to the bite, stirring occasionally, 8 to 10 minutes.",
},
{
id: 7,
instruction:
"Drain the pasta and place in a large serving bowl. Add the sauce. Toss gently and season with salt and pepper, if needed. Sprinkle with the remaining 1/4 cup parsley and 1/4 cup Parmesan cheese. Put the meatballs in a separate bowl and serve alongside the pasta.",
},
],
cookbook: {
title: "Giada at Home",
author: "Giada de Laurentiis",
thumbnail: "",
amazonLink: "",
},
},
{
id: 89,
recipeImage: "",
recipeTitle: "Caponata",
servingSize: "5 cups",
totalTime: "",
dailyMeal: "lunch",
protein: "vegetariann vegan",
cuisine: "italian",
season: "spring summer fall winter",
course: "side",
keywords: "",
authorNote: "",
ingredients: [
{
id: 1,
quantity: "1/4 cup",
unit: "",
name: "Olive oil",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 2,
quantity: "1",
unit: "",
name: "Onion",
prep: "chopped",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 3,
quantity: "1",
unit: "",
name: "Celery stalk",
prep: "chopped",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 4,
quantity: "1",
unit: "",
name: "Medium eggplant",
prep: "cut into 1/2-inch cubes",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 5,
quantity: "1",
unit: "",
name: "Red bell pepper",
prep: "cored, seeded, and cut into 1/2-inch pieces",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 6,
quantity: "14.5 oz (1 can)",
unit: "",
name: "Diced tomatoes with juices",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 7,
quantity: "3 tbsp",
unit: "",
name: "Raisins",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 8,
quantity: "1/2 tsp",
unit: "",
name: "Dried oregano",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 9,
quantity: "1/4 cup",
unit: "",
name: "Red wine vinegar",
prep: "",
additional: {
quantity: "",
unit: "",
note: "",
},
},
{
id: 10,
quantity: "4 tsp",
unit: "",
name: "Sugar",
prep: "",
additional: {