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
33 changes: 18 additions & 15 deletions week3/homework/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"name": "hyf-node-week-3-homework",
"version": "1.0.0",
"description": "HackYourFuture Node.js Week 3 - Homework",
"repository": "https://github.com/HackYourFuture/nodejs.git",
"main": "src/index.js",
"author": "George Sapkin",
"license": "MIT",
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
"name": "hyf-node-week-3-homework",
"version": "1.0.0",
"description": "HackYourFuture Node.js Week 3 - Homework",
"repository": "https://github.com/HackYourFuture/nodejs.git",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js"
},
"author": "George Sapkin",
"license": "MIT",
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}
33 changes: 33 additions & 0 deletions week3/homework/src/database.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[
{
"id": 1,
"title": "Gym",
"description": "Go to the gym",
"done": false
},
{
"id": 2,
"title": "Shopping",
"description": "Going for shopping",
"done": false
},
{
"id": 3,
"title": "Homework",
"description": "Do the homework",
"done": false
},
{
"id": 5,
"title": "Doctor",
"description": "See the doctor",
"done": false
},
{
"id": 6,
"title": "Feedback",
"description": "Responding to feedback",
"done": false
}
]
© 2019 GitHub, Inc.
2 changes: 0 additions & 2 deletions week3/homework/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
'use strict';

// TODO: Write the homework code in this file
Loading