-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdb.json
More file actions
101 lines (101 loc) · 2.38 KB
/
db.json
File metadata and controls
101 lines (101 loc) · 2.38 KB
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
{
"users": [
{
"id": "1",
"name": "Demo User",
"email": "[email protected]",
"password": "demo1234",
"createdAt": "2026-01-24T00:00:00.000Z"
}
],
"products": [
{
"id": "1",
"name": "Cloud Linen Bedding",
"price": 89000,
"image": "https://picsum.photos/seed/bedding/1200/900",
"description": "Soft, breathable linen bedding for calm nights.",
"category": "Living",
"rating": 4.8
},
{
"id": "2",
"name": "Scented Candle Set",
"price": 32000,
"image": "https://picsum.photos/seed/candle/1200/900",
"description": "Warm citrus and cedar notes for cozy evenings.",
"category": "Lifestyle",
"rating": 4.6
},
{
"id": "3",
"name": "Minimal Table Lamp",
"price": 67000,
"image": "https://picsum.photos/seed/lamp/1200/900",
"description": "A clean silhouette that brightens any corner.",
"category": "Home",
"rating": 4.7
},
{
"id": "4",
"name": "Canvas Day Bag",
"price": 54000,
"image": "https://picsum.photos/seed/bag/1200/900",
"description": "Lightweight bag for daily errands and trips.",
"category": "Fashion",
"rating": 4.5
},
{
"id": "5",
"name": "Herbal Tea Starter Kit",
"price": 28000,
"image": "https://picsum.photos/seed/tea/1200/900",
"description": "A calming blend with chamomile, mint, and citrus.",
"category": "Food",
"rating": 4.4
},
{
"id": "6",
"name": "Ceramic Dinner Plate Set",
"price": 76000,
"image": "https://picsum.photos/seed/plate/1200/900",
"description": "Matte finish plates that elevate every meal.",
"category": "Kitchen",
"rating": 4.7
}
],
"cartItems": [],
"orders": [
{
"id": "aa2c",
"userId": "1",
"items": [
{
"productId": "2",
"quantity": 1,
"price": 32000
},
{
"productId": "1",
"quantity": 1,
"price": 89000
}
],
"total": 121000,
"createdAt": "2026-01-28T03:32:09.800Z"
},
{
"id": "2bf7",
"userId": "1",
"items": [
{
"productId": "1",
"quantity": 1,
"price": 89000
}
],
"total": 89000,
"createdAt": "2026-01-28T03:49:59.876Z"
}
]
}