-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
23 lines (22 loc) · 823 Bytes
/
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
{
"recipes": {
"100": {
"title": "Turnip Stew",
"author": "Bob Boblaw",
"ingredients": [
{ "name": "turnip", "amount": 3, "unit": "turnips"},
{ "name": "water", "amount": 1, "unit": "cups"},
{ "name": "carrots", "amount": 2, "unit": "carrots"},
{ "name": "salt", "amount": 2, "unit": "tsp"},
{ "name": "parsley", "amount": 3, "unit": "tsp"}
],
"instructions": [
{ "order": 1, "text": "Peel and cut turnips and carrots into 1-inch pieces."},
{ "order": 2, "text": "Bring water to boil in a large pot. Add all ingredients to water and reduce heat to a simmer for 1 hour."},
],
"notes": "Tastes like a meal served in a Siberian prison camp, but lots of turnip goodness makes up for it."
}
},
"plans": {
}
}