-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathdb.json
630 lines (630 loc) · 14.1 KB
/
db.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
{
"recipes": [
{
"id": "1",
"name": "Spaghetti Carbonara",
"ingredients": [
"Spaghetti",
"Eggs",
"Parmesan Cheese",
"Pancetta",
"Black Pepper"
],
"instructions": "Boil the spaghetti. Fry the pancetta. Mix eggs and cheese. Combine all.",
"cuisineId": "1",
"dietId": "3",
"difficultyId": "3",
"image": "/uploads/carbonara-horizontal-square640-v2.jpg"
},
{
"id": "2",
"name": "Margherita Pizza",
"ingredients": [
"Pizza Dough",
"Tomato Sauce",
"Mozzarella Cheese",
"Basil",
"Olive Oil"
],
"instructions": "Prepare the dough. Spread tomato sauce. Add cheese and basil. Bake in the oven.",
"cuisineId": "1",
"dietId": "1",
"difficultyId": "2",
"image": "/uploads/Margherita-9920.webp"
},
{
"id": "3",
"name": "Tiramisu",
"ingredients": [
"Ladyfingers",
"Mascarpone Cheese",
"Coffee",
"Cocoa Powder",
"Sugar"
],
"instructions": "Dip ladyfingers in coffee. Layer with mascarpone mixture. Dust with cocoa powder.",
"cuisineId": "1",
"dietId": "3",
"difficultyId": "2",
"image": "/uploads/tiramisu.jpg"
},
{
"id": "4",
"name": "Caesar Salad",
"ingredients": [
"Romaine Lettuce",
"Caesar Dressing",
"Croutons",
"Parmesan Cheese",
"Chicken Breast"
],
"instructions": "Chop lettuce. Add dressing, croutons, and cheese. Top with grilled chicken.",
"cuisineId": "2",
"dietId": "2",
"difficultyId": "1",
"image": "/uploads/Caesar-Salad.webp"
},
{
"id": "5",
"name": "Beef Tacos",
"ingredients": [
"Taco Shells",
"Ground Beef",
"Lettuce",
"Tomato",
"Cheddar Cheese"
],
"instructions": "Cook beef. Assemble tacos with beef, lettuce, tomato, and cheese.",
"cuisineId": "3",
"dietId": "2",
"difficultyId": "1",
"image": "/uploads/Beef-Tacos.jpg"
},
{
"id": "6",
"name": "Chicken Curry",
"ingredients": [
"Chicken",
"Curry Powder",
"Coconut Milk",
"Onion",
"Garlic"
],
"instructions": "Cook chicken with onion and garlic. Add curry powder and coconut milk. Simmer until done.",
"cuisineId": "4",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/46822-indian-chicken-curry.jpg"
},
{
"id": "7",
"name": "Sushi Rolls",
"ingredients": [
"Sushi Rice",
"Nori",
"Fish",
"Cucumber",
"Avocado"
],
"instructions": "Spread rice on nori. Add fillings. Roll and slice.",
"cuisineId": "5",
"dietId": "2",
"difficultyId": "3",
"image": "/uploads/Sushi-Rolls-Maki-Sushi-–-Hosomaki-1106-II.jpg"
},
{
"id": "8",
"name": "Paella",
"ingredients": [
"Rice",
"Saffron",
"Seafood",
"Bell Peppers",
"Peas"
],
"instructions": "Cook rice with saffron. Add seafood and vegetables. Simmer until done.",
"cuisineId": "6",
"dietId": "2",
"difficultyId": "3",
"image": "/uploads/Paella.webp"
},
{
"id": "9",
"name": "French Onion Soup",
"ingredients": [
"Onions",
"Beef Broth",
"Gruyere Cheese",
"Baguette",
"Butter"
],
"instructions": "Caramelize onions. Add broth. Top with bread and cheese. Broil until cheese melts.",
"cuisineId": "7",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/french-onion-soup-1.jpg"
},
{
"id": "10",
"name": "Greek Salad",
"ingredients": [
"Cucumber",
"Tomato",
"Feta Cheese",
"Olives",
"Red Onion"
],
"instructions": "Chop vegetables. Toss with feta and olives. Drizzle with olive oil.",
"cuisineId": "8",
"dietId": "2",
"difficultyId": "1",
"image": "/uploads/greek-salad-index-642f292397bbf.jpg"
},
{
"id": "11",
"name": "Pad Thai",
"ingredients": [
"Rice Noodles",
"Shrimp",
"Peanuts",
"Bean Sprouts",
"Eggs"
],
"instructions": "Cook noodles. Stir-fry shrimp and vegetables. Add noodles and sauce. Top with peanuts.",
"cuisineId": "9",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/1200px-Phat_Thai_kung_Chang_Khien_street_stall.jpg"
},
{
"id": "12",
"name": "Butter Chicken",
"ingredients": [
"Chicken",
"Tomato Sauce",
"Cream",
"Butter",
"Spices"
],
"instructions": "Cook chicken with spices. Add tomato sauce and cream. Simmer until done.",
"cuisineId": "4",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/butter-chicken-ac2ff98.jpg"
},
{
"id": "13",
"name": "Fish and Chips",
"ingredients": [
"Cod",
"Potatoes",
"Flour",
"Beer",
"Salt"
],
"instructions": "Batter and fry fish. Fry potatoes. Serve with salt.",
"cuisineId": "10",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/Fish_and_chips_blackpool.jpg"
},
{
"id": "14",
"name": "Beef Stroganoff",
"ingredients": [
"Beef",
"Mushrooms",
"Onions",
"Sour Cream",
"Butter"
],
"instructions": "Cook beef and vegetables. Add sour cream. Serve with noodles.",
"cuisineId": "11",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/16311-simple-beef-stroganoff-DDMFS-4x3.jpg"
},
{
"id": "15",
"name": "Eggplant Parmesan",
"ingredients": [
"Eggplant",
"Tomato Sauce",
"Mozzarella Cheese",
"Parmesan Cheese",
"Breadcrumbs"
],
"instructions": "Bread and fry eggplant. Layer with sauce and cheese. Bake until golden.",
"cuisineId": "1",
"dietId": "3",
"difficultyId": "2",
"image": "/uploads/eggplant-parmesan.jpg"
},
{
"id": "16",
"name": "Falafel",
"ingredients": [
"Chickpeas",
"Onion",
"Garlic",
"Parsley",
"Spices"
],
"instructions": "Blend ingredients. Form into balls. Fry until golden.",
"cuisineId": "12",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/Falafel.webp"
},
{
"id": "17",
"name": "Ramen",
"ingredients": [
"Ramen Noodles",
"Pork",
"Egg",
"Green Onions",
"Soy Sauce"
],
"instructions": "Cook noodles. Prepare broth with pork and soy sauce. Add toppings.",
"cuisineId": "5",
"dietId": "4",
"difficultyId": "2",
"image": "/uploads/Ramen.webp"
},
{
"id": "18",
"name": "Shakshuka",
"ingredients": [
"Tomatoes",
"Eggs",
"Onions",
"Bell Peppers",
"Spices"
],
"instructions": "Cook vegetables with spices. Add eggs. Simmer until eggs are set.",
"cuisineId": "13",
"dietId": "2",
"difficultyId": "1",
"image": "/uploads/Shakshuka-main-1.webp"
},
{
"id": "19",
"name": "Chicken Alfredo",
"ingredients": [
"Fettuccine",
"Chicken",
"Cream",
"Parmesan Cheese",
"Butter"
],
"instructions": "Cook pasta. Prepare sauce with chicken, cream, and cheese. Combine all.",
"cuisineId": "1",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/Chicken-Alfredo-bowl.jpg"
},
{
"id": "20",
"name": "Bibimbap",
"ingredients": [
"Rice",
"Beef",
"Vegetables",
"Egg",
"Gochujang"
],
"instructions": "Cook rice. Arrange beef and vegetables on top. Add egg and sauce.",
"cuisineId": "14",
"dietId": "2",
"difficultyId": "2",
"image": "/uploads/Bibimbap_3.webp"
},
{
"id": "21",
"name": "Pancakes",
"ingredients": [
"Flour",
"Milk",
"Eggs",
"Baking Powder",
"Sugar"
],
"instructions": "Mix ingredients. Cook on griddle. Serve with syrup.",
"cuisineId": "2",
"dietId": "2",
"difficultyId": "1",
"image": "/uploads/best-homemade-pancakes-index-640775a2dbad8.jpg"
},
{
"id": "22",
"name": "Pasta Primavera",
"ingredients": [
"Pasta",
"Zucchini",
"Tomatoes",
"Bell Peppers",
"Parmesan Cheese"
],
"instructions": "Cook pasta. Sauté vegetables. Combine with pasta and cheese.",
"cuisineId": "1",
"dietId": "3",
"difficultyId": "1",
"image": "/uploads/Pasta-Primavera-f.jpg"
}
],
"comments": [
{
"id": "1",
"recipeId": "1",
"comment": "Delicious and easy to make!",
"rating": 5,
"date": "2024-06-08T14:48:00.000Z"
},
{
"id": "2",
"recipeId": "1",
"comment": "Loved it! Perfect for a quick dinner.",
"rating": 4,
"date": "2024-06-09T12:30:00.000Z"
},
{
"id": "3",
"recipeId": "1",
"comment": "Great flavors, will make again.",
"rating": 5,
"date": "2024-06-10T09:45:00.000Z"
},
{
"id": "4",
"recipeId": "2",
"comment": "Tasty and quick to make!",
"rating": 4,
"date": "2024-06-10T14:15:00.000Z"
},
{
"id": "5",
"recipeId": "2",
"comment": "My kids loved it!",
"rating": 5,
"date": "2024-06-11T10:20:00.000Z"
},
{
"id": "6",
"recipeId": "3",
"comment": "Perfect dessert for a party.",
"rating": 5,
"date": "2024-06-12T17:35:00.000Z"
},
{
"id": "7",
"recipeId": "4",
"comment": "Healthy and delicious.",
"rating": 4,
"date": "2024-06-13T08:25:00.000Z"
},
{
"id": "8",
"recipeId": "4",
"comment": "Easy to prepare.",
"rating": 4,
"date": "2024-06-14T12:10:00.000Z"
},
{
"id": "9",
"recipeId": "5",
"comment": "A family favorite!",
"rating": 5,
"date": "2024-06-15T18:45:00.000Z"
},
{
"id": "10",
"recipeId": "6",
"comment": "Rich and flavorful.",
"rating": 5,
"date": "2024-06-16T11:00:00.000Z"
},
{
"id": "11",
"recipeId": "7",
"comment": "Great for sushi lovers.",
"rating": 5,
"date": "2024-06-17T15:55:00.000Z"
},
{
"id": "12",
"recipeId": "8",
"comment": "Takes time but worth it.",
"rating": 4,
"date": "2024-06-18T09:30:00.000Z"
},
{
"id": "13",
"recipeId": "9",
"comment": "Comforting and warm.",
"rating": 5,
"date": "2024-06-19T14:00:00.000Z"
},
{
"id": "14",
"recipeId": "10",
"comment": "Fresh and tasty.",
"rating": 4,
"date": "2024-06-20T13:45:00.000Z"
},
{
"id": "15",
"recipeId": "11",
"comment": "Authentic and delicious.",
"rating": 5,
"date": "2024-06-21T17:20:00.000Z"
},
{
"id": "16",
"recipeId": "12",
"comment": "Creamy and delicious.",
"rating": 5,
"date": "2024-06-22T09:55:00.000Z"
},
{
"id": "17",
"recipeId": "13",
"comment": "Crispy and tasty.",
"rating": 4,
"date": "2024-06-23T18:40:00.000Z"
},
{
"id": "18",
"recipeId": "14",
"comment": "Rich and creamy.",
"rating": 4,
"date": "2024-06-24T11:10:00.000Z"
},
{
"id": "19",
"recipeId": "15",
"comment": "Perfect vegetarian meal.",
"rating": 5,
"date": "2024-06-25T16:30:00.000Z"
},
{
"id": "20",
"recipeId": "16",
"comment": "Crispy and flavorful.",
"rating": 5,
"date": "2024-06-26T12:45:00.000Z"
},
{
"id": "21",
"recipeId": "17",
"comment": "Warm and comforting.",
"rating": 4,
"date": "2024-06-27T10:20:00.000Z"
},
{
"id": "22",
"recipeId": "18",
"comment": "Spicy and delicious.",
"rating": 5,
"date": "2024-06-28T14:55:00.000Z"
},
{
"id": "23",
"recipeId": "19",
"comment": "Rich and creamy.",
"rating": 5,
"date": "2024-06-29T17:40:00.000Z"
},
{
"id": "24",
"recipeId": "20",
"comment": "Hearty and flavorful.",
"rating": 4,
"date": "2024-06-30T19:15:00.000Z"
},
{
"id": "25",
"recipeId": "21",
"comment": "Fluffy and delicious.",
"rating": 5,
"date": "2024-07-01T09:35:00.000Z"
},
{
"id": "26",
"recipeId": "22",
"comment": "Fresh and vibrant.",
"rating": 4,
"date": "2024-07-02T14:20:00.000Z"
}
],
"cuisines": [
{
"id": "1",
"name": "Italian"
},
{
"id": "2",
"name": "American"
},
{
"id": "3",
"name": "Mexican"
},
{
"id": "4",
"name": "Indian"
},
{
"id": "5",
"name": "Japanese"
},
{
"id": "6",
"name": "Spanish"
},
{
"id": "7",
"name": "French"
},
{
"id": "8",
"name": "Greek"
},
{
"id": "9",
"name": "Thai"
},
{
"id": "10",
"name": "British"
},
{
"id": "11",
"name": "Russian"
},
{
"id": "12",
"name": "Middle Eastern"
},
{
"id": "13",
"name": "North African"
},
{
"id": "14",
"name": "Korean"
}
],
"difficulties": [
{
"id": "1",
"name": "Easy"
},
{
"id": "2",
"name": "Medium"
},
{
"id": "3",
"name": "Hard"
}
],
"diets": [
{
"id": "1",
"name": "Vegetarian"
},
{
"id": "2",
"name": "Mediterranean"
},
{
"id": "3",
"name": "Non-Vegetarian"
},
{
"id": "4",
"name": "Pescatarian"
}
]
}