-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtasks.json
More file actions
72 lines (72 loc) · 2.11 KB
/
tasks.json
File metadata and controls
72 lines (72 loc) · 2.11 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
[
{
"title": "Master Semantic HTML",
"description": "Implement accessible HTML structure using semantic tags and ARIA roles",
"category": "Frontend",
"status": "completed",
"dueDate": "2025-03-01"
},
{
"title": "CSS Grid Layout Implementation",
"description": "Create complex responsive layouts using CSS Grid",
"category": "Frontend",
"status": "in-progress",
"dueDate": "2025-03-15"
},
{
"title": "React Hooks Deep Dive",
"description": "Implement useState, useEffect, and custom hooks in a project",
"category": "Frontend",
"status": "not-started",
"dueDate": "2025-04-01"
},
{
"title": "Node.js REST API Setup",
"description": "Create Express.js server with CRUD endpoints using MVC pattern",
"category": "Backend",
"status": "not-started",
"dueDate": "2025-04-15"
},
{
"title": "Mongoose Schema Design",
"description": "Implement relationships between User, Task, and Subscription models",
"category": "Database",
"status": "in-progress",
"dueDate": "2025-03-20"
},
{
"title": "JWT Authentication Flow",
"description": "Implement secure authentication with access/refresh tokens",
"category": "Security",
"status": "not-started",
"dueDate": "2025-04-10"
},
{
"title": "Dockerize Application",
"description": "Create Docker containers for Node.js and MongoDB services",
"category": "DevOps",
"status": "not-started",
"dueDate": "2025-05-01"
},
{
"title": "Testing Strategy Implementation",
"description": "Set up Jest and React Testing Library for component tests",
"category": "Testing",
"status": "not-started",
"dueDate": "2025-05-15"
},
{
"title": "Payment Gateway Integration",
"description": "Implement Stripe/Razorpay checkout in MERN stack",
"category": "Full Stack",
"status": "not-started",
"dueDate": "2025-06-01"
},
{
"title": "Real-time Features with Socket.io",
"description": "Implement chat functionality and live updates",
"category": "Full Stack",
"status": "not-started",
"dueDate": "2025-06-15"
}
]