-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtask.json
94 lines (94 loc) · 2.06 KB
/
task.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
{
"tasks": [
{
"id": 1,
"title": "Set up environment",
"description": "Install Node.js, npm, and git",
"completed": true
},
{
"id": 2,
"title": "Create a new project",
"description": "Create a new project using the Express application generator",
"completed": true
},
{
"id": 3,
"title": "Install nodemon",
"description": "Install nodemon as a development dependency",
"completed": true
},
{
"id": 4,
"title": "Install Express",
"description": "Install Express",
"completed": false
},
{
"id": 5,
"title": "Install Mongoose",
"description": "Install Mongoose",
"completed": false
},
{
"id": 6,
"title": "Install Morgan",
"description": "Install Morgan",
"completed": false
},
{
"id": 7,
"title": "Install body-parser",
"description": "Install body-parser",
"completed": false
},
{
"id": 8,
"title": "Install cors",
"description": "Install cors",
"completed": false
},
{
"id": 9,
"title": "Install passport",
"description": "Install passport",
"completed": false
},
{
"id": 10,
"title": "Install passport-local",
"description": "Install passport-local",
"completed": false
},
{
"id": 11,
"title": "Install passport-local-mongoose",
"description": "Install passport-local-mongoose",
"completed": false
},
{
"id": 12,
"title": "Install express-session",
"description": "Install express-session",
"completed": false
},
{
"id": 13,
"title": "Install connect-mongo",
"description": "Install connect-mongo",
"completed": false
},
{
"id": 14,
"title": "Install dotenv",
"description": "Install dotenv",
"completed": false
},
{
"id": 15,
"title": "Install jsonwebtoken",
"description": "Install jsonwebtoken",
"completed": false
}
]
}