-
Notifications
You must be signed in to change notification settings - Fork 59
/
recipes.json
2203 lines (2203 loc) · 64.4 KB
/
recipes.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
{
"recipe": [
{
"name": "Moussaka",
"id": "moussaka",
"description": "The Greek staple",
"tag": [
"Greek"
],
"ingredient": [],
"ingredientGroup": [
{
"name": "Bottom layer: Eggplants",
"ingredient": [
{
"name": "large eggplants",
"unit": "3"
},
{
"name": "Olive oil"
},
{
"name": "Salt"
}
]
},
{
"name": "Middle layer: Mince",
"ingredient": [
{
"amount": "1.5",
"unit": "kg",
"name": "ground beef"
},
{
"amount": "3",
"name": "large onions"
},
{
"amount": "3",
"name": "garlic cloves"
},
{
"amount": "700gr",
"name": "tomato pureé"
},
{
"amount": "3",
"unit": "tbsp",
"name": "sugar"
},
{
"name": "Metaxa or other cognac"
},
{
"amount": "4",
"name": "bay leaves"
},
{
"name": "olive oil"
},
{
"name": "salt"
},
{
"name": "black pepper"
}
]
},
{
"name": "Top layer: Béchamel",
"ingredient": [
{
"amount": "1.5",
"unit": "lt",
"name": "milk"
},
{
"amount": "150",
"unit": "gr",
"name": "butter"
},
{
"amount": "150",
"unit": "gr",
"name": "flour"
},
{
"amount": "1",
"name": "onion"
},
{
"name": "cloves"
},
{
"name": "ground nutmeg"
},
{
"amount": "1-2",
"name": "eggs"
},
{
"name": "Graviera or other hard yellow cheese",
"preparation": "grated"
},
{
"name": "salt"
},
{
"name": "black pepper"
}
]
}
],
"step": [
{
"description": "**Bottom layer:** Slice the eggplants, length-wise into 8mm slices.\nPut them on a pan, add salt and drizzle olive oil.\nBake them at 170-180C for 10-15 minutes."
},
{
"description": "**Middle layer:** \n1. Finely chop the onions and garlic cloves and fry them in the olive oil in high heat.\n2. Add the mince and bay leaves and reduce heat to medium.\n3. Pour the Metaxa.\n4. Add the cinnamon stick and remove it after 10 minutes.\n5. Add the tomato pureé and sugar and stir well.\n6. Cook the mixture until the mince is brown."
},
{
"description": "**Béchamel:** \n1. Heat up the milk in a pot (do not let it boil!). Peel the onion, stick several cloves in it, then add it in the milk pot.\n2. In a separate pot, melt the butter and then whisk it with the flour very well. \n3. **Take the pot off the heat** and slowly add milk with a ladle (similarly to how we add stock to risotto) as you keep whisking in big circles. **This is the most challenging part of the entire dish**: If there are lumps you can’t get rid of, the bechamel is destroyed.\n4. After adding all the milk, put it on the heat again and stir very frequently, until thick (but not too thick).\n5. Take it off the heat and add ground nutmeg (a lot, don't be afraid of it), salt, pepper to taste and stir well.\nUse a tablespoon to mix in the parts at the corners of the bottom of the pot as the whisk doesn’t go there.\n6. In the end add the eggs and optionally some grated cheese and stir well.\n7. Pour over the mince in the pan and add grated cheese on top."
},
{
"description": "**Putting it all together**:\n1. Preheat oven at 170C.\n2. Smear butter all over the pan making it sure it goes everywhere, even on the sides and then sprinkle with toast crumbs everywhere.\n3. Add a horizontal layer of eggplant and cover the gaps with vertically placed eggplant slices.\n4. Add a layer of the cooked mince, making sure it goes everywhere.\n5.Add the béchamel sauce, making sure it goes everywhere.\n6. Add grated cheese on top.\n7. Bake at 170C until it starts to look slightly roasted, about 20 minutes. You don’t want to cook them too long, otherwise they start going bitter."
}
]
},
{
"name": "Spanakorizo",
"id": "spanakorizo",
"description": "A low carb twist on the Greek classic, using cauliflower rice",
"tag": [
"Greek",
"Vegetarian"
],
"image": "http://forkgasm.com/images/spanakorizo.png",
"ingredient": [
{
"amount": "500",
"unit": "g",
"name": "cauliflower rice (frozen ok)"
},
{
"amount": "2",
"unit": "oz",
"name": "butter"
},
{
"name": "olive oil"
},
{
"amount": "1",
"unit": "lbs",
"name": "chopped spinach (frozen ok)"
},
{
"amount": "2",
"unit": "tsp",
"name": "concentrated chicken stock (e.g. Better than Bouillon)"
},
{
"name": "yellow onion",
"preparation": "chopped/diced"
},
{
"amount": "5",
"unit": "cloves",
"name": "garlic",
"preparation": "chopped"
},
{
"amount": "2",
"name": "scallions",
"preparation": "chopped"
},
{
"name": "feta",
"preparation": "chopped"
},
{
"name": "nutritional yeast"
},
{
"name": "salt"
},
{
"amount": "0.5",
"name": "lemon",
"preparation": "juiced"
},
{
"name": "Dill",
"preparation": "(optional)"
}
],
"ingredientGroup": [
{
"ingredient": [
{
"amount": "1"
}
]
}
],
"step": [
{
"description": "In a large frying pan cook the cauliflower rice and the onion with butter and the concentrated chicken stock until the cauliflower rice starts drying a bit and the onion becomes translucent (if not using frozen cauliflower rice you may need to cook the onion before adding the cauliflower rice). Do not add butter to the pan first, you can just cook it all together."
},
{
"description": "Move the mixture away from the center of the pan and pour some olive oil in the center. When it heats up, add the chopped garlic.."
},
{
"description": "After the garlic becomes a little fragrant, mix it all together and add the spinach. Mix well and keep stirring until the spinach defrosts."
},
{
"description": "Once the spinach defrosts, add the spring onion, the chopped feta, and the dill (if using), and sprinkle with a generous amount of nutritional yeast. Stir well and salt to taste."
},
{
"description": "Add the lemon juice, give it a good stir and serve!"
}
]
},
{
"name": "Giouvarlakia",
"id": "giouvarlakia",
"description": "A low carb version of a traditional hearty Greek dish",
"tag": [
"Greek"
],
"image": "http://forkgasm.com/images/106039513_690984628417462_2727964218559966794_n.jpg",
"ingredient": [
{
"amount": "500",
"unit": "g",
"name": "ground meat (beef, pork, or both), at least 20% fat"
},
{
"amount": "1",
"name": "small onion",
"preparation": "finely chopped or minced"
},
{
"amount": "350",
"unit": "g",
"name": "cauliflower rice"
},
{
"amount": "2",
"name": "lemons",
"preparation": "juiced"
},
{
"amount": "3",
"name": "eggs"
},
{
"name": "olive oil"
},
{
"amount": "50",
"unit": "g",
"name": "butter"
},
{
"name": "parsley"
},
{
"name": "dill"
},
{
"amount": "1",
"unit": "clove",
"name": "garlic"
},
{
"amount": "2",
"unit": "tsp",
"name": "concentrated chicken or vegetable stock"
}
],
"ingredientGroup": [],
"step": [
{
"description": "Saute the cauliflower rice with no (or very little) oil and stir frequently, until it dries up, making sure it doesn't stick.\n(Note that this picture only has half the amount of cauliflower rice the recipe needs)\n![The cauliflower rice, after it's cooked enough to dry](https://scontent-lga3-1.xx.fbcdn.net/v/t1.0-9/106742352_10158441296886192_2719018989199158785_n.jpg?_nc_cat=110&_nc_sid=07e735&_nc_ohc=LA0Z029Nqf4AX9O3xky&_nc_ht=scontent-lga3-1.xx&oh=e984cfd0263d9e0863a6249dbb4c39b5&oe=5F21DB46)"
},
{
"description": "In a large pot, add 1.5 liters of water, the butter, 2 tbsp olive oil, and the chicken stock and bring to the boil. While you're waiting for it to boil, make the meatballs."
},
{
"description": "**Meatball mix:** In a large bowl, mix well:\n- the ground meat\n- the white from 1 egg (save the yolk for the avgolemono)\n- the parsley and dill (if using dried, about 1 tbsp each, adjust accordingly for fresh (which is preferable)\n- The onion\n- 3 tbsp olive oil\n- 2 tsp salt\n- Some pepper\n\nMix it very well and once it's thoroughly mixed, add 100 g of the cauliflower rice.\n![The ground meat mix](https://scontent-lga3-1.xx.fbcdn.net/v/t1.0-9/106500543_10158441297096192_1016249431222912855_n.jpg?_nc_cat=106&_nc_sid=07e735&_nc_ohc=aos9x5WnGDYAX_haM-z&_nc_ht=scontent-lga3-1.xx&oh=b032e9d223211ee1f19b7ef7992967e4&oe=5F21DD06)"
},
{
"description": "Make small balls with the meatball mix, around 30-40, the smaller the tastier. I made 32, so aim for even smaller than this.\n![](https://scontent-lga3-1.xx.fbcdn.net/v/t1.0-9/83245195_10158441297121192_906504881004643779_n.jpg?_nc_cat=104&_nc_sid=07e735&_nc_ohc=9BMKDv2NoHQAX8dusrw&_nc_ht=scontent-lga3-1.xx&oh=45af8dfc0d9c9e11868d4e536ad513f2&oe=5F207CE3)"
},
{
"description": "Lower the meatballs one by one slowly into the boiling water. Put the lid on, and simmer for 30-35 minutes in medium to low heat.\n![](https://scontent-lga3-1.xx.fbcdn.net/v/t1.0-9/106353146_10158441297021192_1920302685464321506_n.jpg?_nc_cat=111&_nc_sid=07e735&_nc_ohc=YYLf9oWL1soAX_s6nw0&_nc_ht=scontent-lga3-1.xx&oh=b65868dd2f6cf987b0234dd41f8a916a&oe=5F2204D9)"
},
{
"description": "After 20-25 minutes (so 10 minutes before they are done) take a cup of liquid out, and add the remaining cauliflower rice to the pot."
},
{
"description": "**Avgolemono (egg-lemon sauce)**: Beat the 2 eggs and remaining yolk with the juice of the two lemons and when they are homogenized well, start very slowly pouring the cup of stock into the mixture, a little at a time, while beating the mixture with a whisk (ideally an electric whisk). **This needs patience. ** If you don't do this slowly enough, the avgolemono will fail. You need to maintain a homogeneous consistency as you whisk. Doing it too fast will cook the egg and you'll have disgusting cooked bits of egg white floating in your avgolemono (there is even an expression for this in Greek, \"το αυγολέμονο έκοψε\")."
},
{
"description": "Once the meatballs have been cooking for 30 minutes, pour the avgolemono in the pot and stir very well. Bring to a boil once more, stirring frequently.\n![](https://scontent.fbed1-1.fna.fbcdn.net/v/t1.0-9/106504893_10158441296991192_6252916317606881655_n.jpg?_nc_cat=105&_nc_sid=07e735&_nc_ohc=IsPwCJGIIs8AX-eMSRL&_nc_ht=scontent.fbed1-1.fna&oh=c62ae82d5d9a2811634ffa6e3cc7b00f&oe=5F20EACB)"
},
{
"description": "**That's it!** Serve in bowls, with plenty of liquid. This dish can have a range of consistencies and they're all ok: with a thicker liquid, it's more of a sauce, whereas thinner liquid (like in the picture), is more like soup. Up to you!"
}
],
"notes": "- For concentrated stock, we love the brand Better than Bouillon. We used chicken.",
"forked": "- Anastasia's Giouvarlakia\n- https://mybigfatketolife.com/2019/04/05/giouvarlakia/"
},
{
"image": "http://forkgasm.com/images/IMG_6949%20copy.jpg",
"name": "Flourless banana bread",
"id": "banana-bread",
"description": "Delicious banana bread that takes 10 minutes to make!",
"tag": [
"Dessert",
"Low Carb",
"Grain free"
],
"ingredient": [
{
"amount": "2",
"name": "bananas"
},
{
"amount": "1",
"unit": "cup",
"name": "walnuts or pecans",
"preparation": "in pieces"
},
{
"amount": "0.5",
"unit": "cup",
"name": "tahini"
},
{
"amount": "4",
"name": "eggs"
},
{
"amount": "1",
"unit": "tsp",
"name": "baking powder"
},
{
"amount": "40",
"unit": "g",
"name": "honey"
},
{
"amount": "3",
"unit": "tbsp",
"name": "brown sugar or Sukrin Gold"
},
{
"amount": "1",
"unit": "tsp",
"name": "maple extract"
},
{
"name": "cinammon",
"amount": "1",
"unit": "tsp"
}
],
"ingredientGroup": [],
"step": [
{
"description": "In a blender beat all eggs until homogeneous."
},
{
"description": "Add the rest of the ingredients except the bananas and walnuts and beat until smooth"
},
{
"description": "Add bananas (in large pieces) and half of the walnuts and beat until smooth"
},
{
"description": "Pour mixture in an oiled cake tray (you can use sesame oil for the oiling) and sprinkle with the rest of the walnut pieces evenly."
},
{
"description": "Cover with tin foil and bake for 30-40 minutes at 175C/345F (convection bake is better). Depending on your oven, you may want to turn it around (horizontally) after 15 minutes to ensure even baking."
},
{
"description": "Done! It may be a little gooey at first but will be fine when it cools down."
}
],
"notes": "- Make sure to shake the tahini jar well before measuring the 0.5 cup of tahini. Don't just pour, use a spoon to get the thicker stuff as well that tends to sink at the bottom.\n- Really nice when hot with vanilla or honey ice cream!\n- If you are not avoiding carbs, you can substitute the maple extract with maple syrup (make sure to adjust the honey accordingly).",
"forked": "[Tal’s Tahini “bread pudding”](https://forkgasm.com/recipes/flourless-banana-bread)"
},
{
"name": "Tal’s Tahini “bread pudding”",
"id": "tahini-bread-pudding",
"description": "A delicious baked dessert that takes 5 minutes to make!",
"tag": [
"Dessert"
],
"image": "http://forkgasm.com/images/bread-pudding.png",
"ingredient": [
{
"amount": "0.5",
"unit": "cup",
"name": "tahini"
},
{
"amount": "4",
"name": "eggs"
},
{
"amount": "1",
"unit": "tsp",
"name": "baking powder"
},
{
"amount": "30",
"unit": "g",
"name": "honey"
},
{
"amount": "3",
"unit": "tbsp",
"name": "Sukrin Gold or brown sugar"
},
{
"amount": "1",
"unit": "tsp",
"name": "maple extract"
},
{
"name": "cinammon",
"amount": "1",
"unit": "tsp"
},
{
"name": "sesame seeds for garnish"
}
],
"ingredientGroup": [
{
"ingredient": []
}
],
"step": [
{
"description": "Beat all ingredients together really well in a blender."
},
{
"description": "Pour mixture in an oiled cake tray (we suggest sesame oil for the oiling) and sprinkle with sesame seeds."
},
{
"description": "Bake for 25-30 minutes at 345F (convection bake is better). Depending on your oven, you may want to turn it around (horizontally) after 15 minutes to ensure even baking."
},
{
"description": "Done, enjoy! We actually eat it with a spoon straight from the cake tray!"
}
],
"notes": "- If you are not avoiding carbs, you can substitute the maple extract with maple syrup.\n- Add two bananas and a good handful of walnuts to the mix and you have banana walnut bread!\n- Other ingredients we've tried (not all at once!): cardamom, Grand Marnier, vanilla extract. Feel free to experiment!",
"forked": "My friend Tal's \"tahini bread\" recipe."
},
{
"name": "Grand Marnier & Coffee Ice Cream",
"id": "grand-marnier-coffee-ice-cream",
"description": "Easy and decadent!",
"tag": [
"Dessert",
"Ice Cream"
],
"ingredient": [
{
"amount": "4",
"unit": "cups",
"name": "heavy cream"
},
{
"amount": "1",
"unit": "cup",
"name": "icing sugar or substitite"
},
{
"amount": "4",
"name": "egg yolks"
},
{
"amount": "0.25",
"unit": "cup",
"name": "Grand Marnier"
},
{
"amount": "1",
"unit": "shot",
"name": "espresso"
},
{
"amount": "1",
"unit": "tbsp",
"name": "vanilla extract"
},
{
"name": "Cocoa nibs for garnish",
"preparation": "(Optional)"
}
],
"ingredientGroup": [
{
"ingredient": []
}
],
"step": [
{
"description": "Beat the heavy cream with half of the icing sugar substitute (added slowly) until starting to get thick"
},
{
"description": "Beat the egg yolks with the remaining half of the icing sugar substitute."
},
{
"description": "Whisk the Grand Marnier, coffee, vanilla extract into the egg yolk mixture."
},
{
"description": "Whisk the egg yolk mixture into the heavy cream mixture"
},
{
"description": "Done! Add to your ice cream machine per manufacturer's instructions or freeze and stir every 30 minutes or so."
}
],
"notes": "- We use (and love) [Sukrin Icing/Melis](https://www.amazon.com/Sukrin-Icing-Melis-Powdered-Substitute/dp/B00U7FCNG2/?tag=leaverou-20) for a healthy icing sugar substitute, it tastes exactly like the real thing and doesn't contain any artificial sweeteners, so it's keto-friendly (it's stevia & erythritol).\n- You can use 2 tbsp instant coffee if you don't have espresso, which is what the original recipe this one is forked from uses!\n- This will produce a delicate Grand Marnier flavor and the coffee will be fairly prominent. Adjust quantities accordingly if you want a stronger Grand Marnier flavor or less of a coffee flavor\n- If you're uncomfortable with raw eggs, you can buy pasteurized eggs or pasteurize them yourself by immersing the eggs in a 57.2C (135F) water bath for 75 minutes using a sous-vide (which is what we did).\n- Note that the amount of mixture this produces may be too much for your ice cream machine. We use a [Cuisinart ICE-21R](https://www.amazon.com/gp/product/B0041A3KPC/?tag=leaverou-20) and we had to do it in 2 batches. But the mixture lasts well in the fridge, we did the second batch 3 days later and it was fine!",
"forked": "[Coffee Grand Marnier Ice Cream](http://www.ronniefein.com/blog/coffee-grand-marnier-ice-cream)",
"image": "https://forkgasm.com/images/grand-marnier-ice-cream.jpg"
},
{
"image": "http://forkgasm.com/images/carbonara.jpg",
"name": "Turnip Noodle Carbonara",
"id": "turnip-carbonara",
"description": "A healthier version of the classic dish that tastes just as good!",
"tag": [
"Bacon"
],
"ingredient": [
{
"amount": "16",
"unit": "oz",
"name": "turnip noodles"
},
{
"amount": "6",
"name": "rashers bacon"
},
{
"amount": "6",
"name": "eggs"
},
{
"amount": "0.5",
"unit": "cup",
"name": "parmesan",
"preparation": "grated"
},
{
"amount": "4",
"name": "cloves garlic",
"preparation": "chopped, optional"
},
{
"amount": "0.25",
"unit": "cup",
"name": "heavy cream"
},
{
"name": "Salt"
},
{
"name": "Pepper",
"preparation": "freshly ground"
}
],
"ingredientGroup": [],
"step": [
{
"description": "Cut the bacon into lardons and sauté until it's lightly cooked."
},
{
"description": "While the bacon is cooking, separate the yolks from 4 of the eggs. Whisk the 4 yolks, 2 whole eggs, the grated parmesan, the cream, and salt and pepper."
},
{
"description": "If using garlic, add it once the bacon is starting to get cooked and saute for a few more minutes until fragrant"
},
{
"description": "Stir in turnip noodles until they are cooked through to desired doneness"
},
{
"description": "Turn the heat down to very low and stir in the egg mixture. Stir rapidly until it cooks, remove from heat."
},
{
"description": "Top with a little more ground pepper and serve!"
}
],
"notes": "Turnip noodles are far closer to spaghetti than zucchini noodles that lose their shape. You can get them pre-spiralized from Whole Foods, or make them yourself with a spiralizer. Summer squash or butternut squash noodles are other options.\nLardons are matchstick-sized pieces of bacon. ",
"forked": "[Zucchini Noodle Carbonara Recipe](https://skinnyms.com/zucchini-noodle-carbonara-recipe/)"
},
{
"image": "http://forkgasm.com/images/40813912_2213541505597183_7740637805202109577_n.jpg",
"name": "Spiced lamb chops with mint-mango sauce",
"id": "spiced-lamb-chops-with-mint-mango-sauce",
"description": "Delicious, refreshing, and super quick to make!",
"tag": [
"Lamb"
],
"ingredient": [
{
"amount": "8",
"name": "lamb chops"
},
{
"amount": "0.25",
"unit": "cup",
"name": "olive oil"
},
{
"amount": "4",
"name": "garlic cloves"
}
],
"ingredientGroup": [
{
"name": "Mint-Mango Sauce",
"ingredient": [
{
"amount": "1",
"name": "medium ripe mango"
},
{
"amount": "1",
"unit": "cup",
"name": "fresh mint"
},
{
"amount": "2",
"name": "green onions"
},
{
"amount": "1",
"unit": "tbsp",
"name": "fresh lime juice"
},
{
"amount": "1",
"name": "serrano chile",
"preparation": "halved and seeded"
},
{
"amount": "0.5",
"name": "ripe avocado"
}
]
},
{
"name": "Spice mix",
"ingredient": [
{
"amount": "1",
"unit": "tbsp",
"name": "cumin",
"preparation": "ground"
},
{
"amount": "2",
"unit": "tsp",
"name": "ground coriander"
},
{
"amount": "2",
"unit": "tsp",
"name": "ground cinammon"
},
{
"amount": "0.5",
"unit": "tsp",
"name": "turmeric"
},
{
"amount": "0.25",
"unit": "tsp",
"name": "cayenne pepper"
},
{
"amount": "0.25",
"unit": "tsp",
"name": "ground cardamom"
},
{
"amount": "0.125",
"unit": "tsp",
"name": "cloves",
"preparation": "ground"
},
{
"amount": "0.5",
"unit": "tbsp",
"name": "coarse kosher salt"
}
]
}
],
"step": [
{
"description": "In a blender or mini food processor, blend all the sauce ingredients, and chill in the fridge."
},
{
"description": "Blend the olive oil and garlic and coat the lamb chops."
},
{
"description": "Make the spice mix, and coat the lamb chops well on both sides."
},
{
"description": "Grill the lamb chops on a very hot cast iron grill pan (or a BBQ if you have one!) for 2-3 minutes on each side for medium rare."
},
{
"description": "Done! Serve with the sauce on the side."
}
],
"notes": "- If you’re out of green onions, you can substitute them in the sauce with 1 shallot\n- A good way to use the spice mix is to put it in an empty spice jar and use that to sprinkle it evenly on the lamb chops.\n- This spice mix is delicious and great on so many things! We've tried it on beef, duck, even carbonara! Might be a good idea to make more than is needed for this dish and keep it around.\n- If you have sauce leftovers, it keeps well in the fridge for days in an airtight container. It may darken a bit due to the avocado but it still tastes good.",
"forked": "[Spiced Lamb Chops with Mint-Mango Sauce](https://www.epicurious.com/recipes/food/views/spiced-lamb-chops-with-mint-mango-sauce-109587)"
},
{
"name": "Papoutsakia",
"id": "papoutsakia",
"description": "A traditional Greek dish that tastes very similar to moussaka, but is much quicker to cook. Fun fact: Papoutsakia in Greek means \"little shoes\" and a portion usually has two. However, when cooking with large American eggplants, you'll likely find that one per portion is enough.",
"tag": [
"Greek"
],
"ingredient": [
{
"amount": "3",
"name": "eggplants"
},
{
"unit": "extra virgin olive oil"
},
{
"name": "thyme"
},
{
"name": "salt, black pepper"
}
],
"ingredientGroup": [
{
"name": "Mince",
"ingredient": [
{
"amount": "2",
"unit": "lbs",
"name": "beef or lamb",
"preparation": "minced"
},
{
"amount": "2",
"name": "yellow onions",
"preparation": "chopped"
},
{
"amount": "6",
"name": "garlic cloves",
"preparation": "chopped"
},
{
"amount": "500",
"unit": "g",
"name": "passata (Italian-style sieved tomato purée)"
},
{
"name": "cinammon",
"preparation": "ground"
},
{
"name": "cloves",
"preparation": "ground"
},
{
"name": "allspice"
},
{
"amount": "4",
"unit": "tsp",
"name": "Better than Bouillon or other beef bouillon base"
},
{
"amount": "0.5",
"unit": "cup",
"name": "Metaxa or other cognac"
},
{
"amount": "2",
"unit": "tbsp",
"name": "Sukrin Gold or brown sugar"
},
{
"amount": "4",
"name": "bay leaves"
},
{
"name": "butter"
},
{
"name": "black pepper"
},
{
"name": "Worcestershire sauce"
}
]
},
{
"name": "Béchamel(ish)",
"ingredient": [
{
"amount": "1",
"unit": "cup",
"name": "butter"
},
{
"amount": "0.5",
"unit": "cup",
"name": "coconut flour"
},
{
"name": "heavy cream"
},
{
"amount": "4",
"name": "egg yolks",
"preparation": "beaten"
},
{
"amount": "250",
"unit": "g",
"name": "hard cheese (we used Gruyère)",
"preparation": "grated"
},
{
"name": "nutmeg",
"preparation": "freshly ground"
}
]
}
],
"step": [
{
"description": "Cut the eggplants in half and scoop out the center. Leave about 1-1.5cm of flesh. Carve the flesh crosswise."
},
{
"description": "Season the eggplants well with olive oil, salt, pepper, thyme. Use your hands to make sure it goes everywhere. Be fast, because they absorb the oil very quickly!"
},
{
"description": "Put eggplants on a large baking tray, cut side down and bake at 200C (392F) for 30-40 minutes."
},
{
"description": "**Mince**: \n1. Fry the onions in the butter on high heat.\n2. Once the onions have started to caramelize, add the garlic and fry for a few more minutes.\n3. Add the cinnamon, cloves, allspice, black pepper and give it a stir.\n4. Add the mince and bay leaves and reduce heat to medium.\n5. Once the meat has started to brown, pour in the Metaxa.\n6. Add the tomato pureé, Sukrin Gold, bouillon base, and Worcestershire sauce and stir well.\n5. Reduce heat and simmer for about half an hour or until the tomato tastes cooked and any liquids have been reduced."
},
{
"description": "**Béchamel:**\n1. Melt the butter in a small pot over low heat\n2. Whisk in the coconut flour, stirring continuously to make a roux\n3. When the roux ingredients are nicely combined, whisk in the cream, adding a little each time to avoid lumps\n4. Cook it over low heat, stirring continuously\n5. When it has thickened, add nutmeg, salt, pepper to taste\n6. Take it off the heat and stir in the yolks and grated cheese"
},
{
"description": "Scoop the minced meat into the eggplants, and top it with the béchamel. Bake for 10 minutes at 200C (392F), checking frequently because ovens vary. You may want to turn on the grill (US: broiler) for the last 5 minutes to give the cheese a nice golden brown."
}
],
"forked": "[Παπουτσάκια με μπεσαμέλ](https://akispetretzikis.com/el/categories/kreas/melitzanes-papoytsakia-me-mpesamel),\nMaria’s moussaka recipe,\n[Low carb roux, béchamel and souffle](http://www.fatisourfriend.com/roux-bechamel-and-souffle.html)",
"image": "http://forkgasm.com/images/6410429C-D04A-4624-9026-715C0A64A005.jpeg"
},
{
"image": "http://forkgasm.com/images/gambas.png",
"name": "Gambas al Ajillo",
"id": "gambas-al-ajillo",
"description": "Quick and garlicky!",
"tag": [
"Seafood",
"Spanish"
],
"ingredient": [
{
"amount": "2",
"unit": "lbs",
"name": "shelled and deveined shrimp"
},
{
"amount": "1",
"unit": "head",
"name": "garlic",
"preparation": "thinly sliced"
},
{
"amount": "1.25",
"unit": "cup",
"name": "extra-virgin olive oil"
},
{
"amount": "1",
"name": "dried hot red chile",
"preparation": "seeded and crumbled"
},
{
"amount": "2",
"unit": "tbsp",
"name": "dry sherry"
},
{
"amount": "1",
"unit": "tsp",
"name": "lemon zest"
},
{
"name": "smoked paprika"
},
{
"name": "salt"
},
{
"name": "parsley"
}
],
"step": [
{
"description": "In a large bowl, toss the shrimp with 1 teaspoon of kosher salt and let stand for 10 minutes. "
},
{
"description": "Meanwhile, in a 9- to 10-inch enameled cast-iron skillet, combine the garlic and olive oil and cook over moderately low heat, stirring occasionally, until the garlic is very fragrant and just starts to brown, 8 to
10 minutes. "
},
{
"description": "Add the chile and smoked paprika and cook, stirring, until fragrant, 15 to 30 seconds.
"
},
{
"description": "Add the shrimp to the skillet and cook over medium heat, stirring and turning the shrimp occasionally, until barely pink, about 5 minutes."
},
{
"description": "Stir in the parsley, sherry, lemon zest and a generous pinch of salt. Remove from the heat and let stand until the shrimp are cooked through, 3 to 5 minutes. Serve in the skillet, passing crusty bread at the table.
"
}
],
"forked": "[Gambas al Ajillo
](http://www.foodandwine.com/recipes/gambas-al-ajillo),\n[Sizzling Shrimp with Garlic (Gambas al Pil Pil)](https://www.williams-sonoma.com/recipe/sizzling-shrimp-with-garlic-gambas-al-pil-pil.html)",
"ingredientGroup": []
},
{
"name": "Shakshuka",
"id": "shakshuka",
"description": "Breakfast of champions (one of them)",
"tag": [
"Arabic",
"Israeli",
"Breakfast"
],
"ingredient": [
{
"amount": "3",
"unit": "tbsp",
"name": "Olive oil"
},
{
"amount": "2",
"unit": "medium",
"name": "Yellow onions",
"preparation": "chopped"
},
{
"amount": "1.5",
"unit": "lb",
"name": "Miced lamb or beef"
},
{
"amount": "1",
"unit": "large",
"name": "Organic green bell pepper",
"preparation": "chopped"
},
{
"amount": "1",
"name": "Jalapeño chilli",
"preparation": "deseeded & chopped"
},
{
"amount": "1",
"unit": "head",
"name": "Garlic",
"preparation": "minced"
},
{
"amount": "1",
"unit": "7 oz jar",
"name": "Tomato concentrate"
},
{
"amount": "1",
"unit": "28 oz tin",
"name": "Chopped peeled tomatoes"
},
{
"amount": "1",
"unit": "cup",
"name": "Red wine"