Skip to content
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -156,3 +156,7 @@ dist
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

node_modules/
package-lock.json
.env
.DS_store
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 80
}
24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very elaborate package,json file. Good attention to detail!

"name": "c55-core-week-6",
"version": "1.0.0",
"description": "The week 6 assignment for the HackYourFuture Core program can be found at the following link: https://hub.hackyourfuture.nl/core-program-week-6-assignment",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hannahwn/c55-core-week-6.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/hannahwn/c55-core-week-6/issues"
},
"homepage": "https://github.com/hannahwn/c55-core-week-6#readme",
"dependencies": {
"chalk": "^4.1.2"
}
}