From 20f3ec4acc503810833a7f887fb1e65b2216e274 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Wed, 23 Apr 2025 20:58:33 -0400 Subject: [PATCH] Remove accounts and transactions data files --- src/data/accounts.json | 20 -------- src/data/transactions.json | 100 ------------------------------------- 2 files changed, 120 deletions(-) delete mode 100644 src/data/accounts.json delete mode 100644 src/data/transactions.json diff --git a/src/data/accounts.json b/src/data/accounts.json deleted file mode 100644 index 2930241..0000000 --- a/src/data/accounts.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "id": "acc1", - "name": "Savings", - "last4": "1234", - "balance": 6164.70 - }, - { - "id": "acc2", - "name": "Checking", - "last4": "5678", - "balance": 400.00 - }, - { - "id": "acc3", - "name": "Credit Card", - "last4": "9012", - "balance": -132.49 - } -] \ No newline at end of file diff --git a/src/data/transactions.json b/src/data/transactions.json deleted file mode 100644 index 94826b9..0000000 --- a/src/data/transactions.json +++ /dev/null @@ -1,100 +0,0 @@ -[ - { - "id": "txn1", - "accountId": "acc1", - "date": "2023-10-05", - "description": "Transfer In", - "amount": 500.00 - }, - { - "id": "txn2", - "accountId": "acc1", - "date": "2023-10-12", - "description": "Coffee Shop", - "amount": -5.50 - }, - { - "id": "txn3", - "accountId": "acc1", - "date": "2023-10-18", - "description": "Book Store", - "amount": -29.95 - }, - { - "id": "txn4", - "accountId": "acc1", - "date": "2023-10-25", - "description": "Restaurant", - "amount": -65.00 - }, - { - "id": "txn5", - "accountId": "acc1", - "date": "2023-10-31", - "description": "Interest Payment", - "amount": 1.15 - }, - { - "id": "txn6", - "accountId": "acc1", - "date": "2023-11-01", - "description": "Salary Deposit", - "amount": 2800.00 - }, - { - "id": "txn7", - "accountId": "acc1", - "date": "2023-11-08", - "description": "Grocery Store", - "amount": -115.75 - }, - { - "id": "txn8", - "accountId": "acc1", - "date": "2023-11-15", - "description": "Utility Bill", - "amount": -85.25 - }, - { - "id": "txn9", - "accountId": "acc1", - "date": "2023-11-22", - "description": "Gas Station", - "amount": -50.00 - }, - { - "id": "txn10", - "accountId": "acc1", - "date": "2023-11-28", - "description": "Online Shopping", - "amount": -145.00 - }, - { - "id": "txn11", - "accountId": "acc2", - "date": "2023-11-02", - "description": "ATM Withdrawal", - "amount": -200.00 - }, - { - "id": "txn12", - "accountId": "acc2", - "date": "2023-11-10", - "description": "Mobile Deposit", - "amount": 600.00 - }, - { - "id": "txn13", - "accountId": "acc3", - "date": "2023-11-05", - "description": "Amazon Purchase", - "amount": -59.99 - }, - { - "id": "txn14", - "accountId": "acc3", - "date": "2023-11-16", - "description": "Dinner Out", - "amount": -72.50 - } -] \ No newline at end of file