-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
110 lines (110 loc) · 2.13 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
{
"burguers": [
{
"id": "0001",
"name": "Triplo Burguer",
"description": "Pão, maionese, 3 carnes de 180g, alface, tomate, bacon e cebola roxa",
"price": 32.0,
"offer": true
},
{
"id": "0002",
"name": "Chicken Burguer",
"description": "Pão, maionese, carne de frango, alface, tomate e queijo e cebola roxa",
"price": 16.3,
"offer": false
},
{
"id": "0003",
"name": "Duplo Burguer",
"description": "Pão, maionese, 3 carnes de 180g, alface, tomate, bacon e cebola roxa",
"price": 27.0,
"offer": true
},
{
"id": "0004",
"name": "Picanha Burguer",
"description": "Pão, maionese, 1 hamburguer de picanha, alface e tomate e cebola roxa",
"price": 40.3,
"offer": false
}
],
"pizza": [
{
"id": "0005",
"name": "Calabresa",
"description": "Molho de tomate, calabresa e queijo",
"price": 25.0,
"offer": false
},
{
"id": "0006",
"name": "4 Queijos",
"description": "Molho de tomate e 4 queijos",
"price": 27.0,
"offer": false
},
{
"id": "0007",
"name": "Strogonoff",
"description": "Molho de tomate e strogonoff de carne",
"price": 29.0,
"offer": false
}
],
"deserts": [
{
"id": "0008",
"name": "Casquinha mista",
"description": "Casquinha mista de creme e chocolate",
"price": 4.5,
"offer": false
},
{
"id": "0009",
"name": "Sorvete de morango",
"description": "Sorvete de morango na casquinha",
"price": 6.0,
"offer": false
},
{
"id": "0010",
"name": "Milshake",
"description": "Milskahe de chocolate",
"price": 10.0,
"offer": false
}
],
"drinks": [
{
"id": "0011",
"name": "Coca-cola lata",
"description": "Lata 350ml",
"price": 4.5,
"offer": false
},
{
"id": "0012",
"name": "Guaraná Lata",
"description": "Lata 350ml",
"price": 4.5,
"offer": false
}
],
"combo": [
{
"id": "0013",
"name": "Combo 1",
"description": "1 hamburguer duplo, 1 guaraná lata e 1 milkshake chocolate",
"price": 50.0,
"offer": false
},
{
"id": "0014",
"name": "Combo 2",
"description": "2 pizzas",
"price": 45.0,
"offer": false
}
]
}