Files
recipes/src/chili/data.js
T
2017-11-15 11:50:28 -08:00

60 lines
2.8 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
module.exports = require("../helpers")({
title: "Chili",
timings: {
prep: "30 min",
cook: "34 hours",
},
icons: ["gluten-free"],
servings: 8,
description: "This is a pretty servicable chili recipe, though nothing particularly special. It produces a " +
"thick, hearty chili which is tasty without being overly spicy.",
steps: [{
ingredients: [
{ amount: 2, unit: "slice", item: "bacon" },
],
directions: "Heat a large stock pot on medium-high heat. Dice the bacon and cook until crispy. (about 5 min)"
}, {
ingredients: [
{ amount: 2, unit: "lb", item: "ground beef" },
{ amount: 1, unit: "lb", item: "italian sausage" },
],
directions: "Add the meat and cook until crumbled and brown throughout. Drain excess grease. (about 10 min)"
}, {
ingredients: [
{ amount: 3, unit: "(15 oz) can", item: "chili beans (drained)" },
{ amount: 1, unit: "(15 oz) can", item: "kidney beans (drained)" },
{ amount: 2, unit: "(28 oz) can", item: "diced tomatoes" },
{ amount: 1, unit: "(6 oz) can", item: "tomato paste" },
{ amount: 1, item: "yellow onion (diced)" },
{ amount: 3, unit: "stalks", item: "celery (diced)" },
{ amount: 1, item: "green pepper (diced)" },
{ amount: 1, item: "red pepper (diced)" },
{ amount: 4, unit: "cups", item: "beef stock" },
{ amount: 1/4, unit: "cup", item: "chili powder" },
{ amount: 1, unit: "tbsp", item: "Worcestershire sauce" },
{ amount: 1, unit: "tbsp", item: "garlic (minced)" },
{ amount: 1, unit: "tbsp", item: "dried oregano" },
{ amount: 2, unit: "tsp", item: "ground cumin" },
{ amount: 2, unit: "tsp", item: "Tabasco sauce" },
{ amount: 1.5, unit: "tsp", item: "cayenne pepper" },
{ amount: 1, unit: "tsp", item: "dried basil" },
{ amount: 1, unit: "tsp", item: "salt" },
{ amount: 1, unit: "tsp", item: "black pepper" },
{ amount: 1, unit: "tsp", item: "paprika" },
{ amount: 1, unit: "tsp", item: "white sugar" },
],
directions: "Add all the new ingredients to the pot and stir until blended completely. Simmer over low " +
"heat for at least 23 hours (preferably more), stirring occasionally."
}, {
ingredients: [
{ amount: 8, unit: "oz", item: "cheddar cheese" },
{ unit: "~", item: "corn tortilla chips" },
],
directions: "Adjust seasonings to taste, and serve with shredded cheese and chips."
}],
credit: {
name: "MIGHTYPURDUE22",
url: "http://allrecipes.com/recipe/78299/boilermaker-tailgate-chili/"
}
})