Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 38 additions & 20 deletions data/tasks.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"id": "1",
"id": 1,
"title": "Learn Node.js Fundamentals",
"description": "Complete the Node.js basics course and build a simple server",
"status": "in-progress",
Expand All @@ -9,25 +9,25 @@
"assignedTo": "John Doe",
"subtasks": [
{
"id": "1.1",
"id": 1.1,
"title": "Install Node.js",
"completed": true,
"description": "Download and install Node.js on your machine"
},
{
"id": "1.2",
"id": 1.2,
"title": "Create First Server",
"completed": false,
"description": "Build a simple HTTP server using Express.js"
},
{
"id": "1.3",
"id": 1.3,
"title": "Handle Routes",
"completed": false,
"description": "Learn how to create and handle different routes"
},
{
"id": "1.4",
"id": 1.4,
"title": "Test Subtask",
"description": "This is a test subtask",
"completed": false
Expand All @@ -37,7 +37,7 @@
"updatedAt": "2025-07-23T01:29:37.667Z"
},
{
"id": "2",
"id": 2,
"title": "Build REST API",
"description": "Create a complete REST API with CRUD operations",
"status": "pending",
Expand All @@ -46,25 +46,25 @@
"assignedTo": "Jane Smith",
"subtasks": [
{
"id": "2.1",
"id": 2.1,
"title": "Design API Structure",
"completed": false,
"description": "Plan the API endpoints and data structure"
},
{
"id": "2.2",
"id": 2.2,
"title": "Implement GET Routes",
"completed": false,
"description": "Create routes to retrieve data"
},
{
"id": "2.3",
"id": 2.3,
"title": "Implement POST Routes",
"completed": false,
"description": "Create routes to add new data"
},
{
"id": "2.4",
"id": 2.4,
"title": "Add Validation",
"completed": false,
"description": "Implement input validation and error handling"
Expand All @@ -74,7 +74,7 @@
"updatedAt": "2024-01-02T11:00:00.000Z"
},
{
"id": "3",
"id": 3,
"title": "Database Integration",
"description": "Connect the API to a database system",
"status": "completed",
Expand All @@ -83,25 +83,25 @@
"assignedTo": "Mike Johnson",
"subtasks": [
{
"id": "3.1",
"id": 3.1,
"title": "Choose Database",
"completed": true,
"description": "Select appropriate database (MongoDB/PostgreSQL)"
},
{
"id": "3.2",
"id": 3.2,
"title": "Setup Connection",
"completed": true,
"description": "Configure database connection"
},
{
"id": "3.3",
"id": 3.3,
"title": "Create Models",
"completed": true,
"description": "Define data models and schemas"
},
{
"id": "3.4",
"id": 3.4,
"title": "Update API",
"completed": true,
"description": "Modify API to use database instead of JSON files"
Expand All @@ -111,7 +111,7 @@
"updatedAt": "2024-01-08T16:45:00.000Z"
},
{
"id": "4",
"id": 4,
"title": "Frontend Development",
"description": "Build a React frontend to consume the API",
"status": "pending",
Expand All @@ -120,19 +120,19 @@
"assignedTo": "Alice Johnson",
"subtasks": [
{
"id": "4.1",
"id": 4.1,
"title": "Setup React Project",
"completed": false,
"description": "Create new React application"
},
{
"id": "4.2",
"id": 4.2,
"title": "Create Components",
"completed": false,
"description": "Build reusable UI components"
},
{
"id": "4.3",
"id": 4.3,
"title": "Connect to API",
"completed": false,
"description": "Integrate frontend with backend API"
Expand All @@ -142,7 +142,7 @@
"updatedAt": "2024-01-04T13:20:00.000Z"
},
{
"id": "5",
"id": 5,
"title": "Test",
"description": "Test",
"status": "pending",
Expand All @@ -152,5 +152,23 @@
"subtasks": [],
"createdAt": "2025-07-23T04:22:47.898Z",
"updatedAt": "2025-07-23T04:22:47.899Z"
},
{
"id": 6,
"title": "Read Node.js Fundamentals",
"description": "Complete the Node.js basics course and build a simple server",
"status": "in-progress",
"priority": "high",
"createdAt": "2025-11-26T16:51:48.131Z",
"updatedAt": "2025-11-26T16:51:48.132Z"
},
{
"id": 7,
"title": "Update Node.js Fundamentals",
"description": "Complete the Node.js basics course and build a simple server",
"status": "in-progress",
"priority": "high",
"createdAt": "2025-11-26T17:08:22.800Z",
"updatedAt": "2025-11-26T17:08:22.801Z"
}
]
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"author": "Duraan",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"body-parser": "^1.20.2",
"express": "^4.21.2",
"node-fetch": "^3.3.2"
},
"devDependencies": {
Expand Down
Loading