diff --git a/.gitignore b/.gitignore index fefc01c..26bc5a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /node_modules -/.history \ No newline at end of file +/.history +.env diff --git a/package.json b/package.json index 08ee7c0..084108a 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,8 @@ "description": "This is an open source project aim at helping young developer contribute and the same put up their skills and bio to the community.", "main": "server", "scripts": { - "start": "node server" + "start": "node server", + "dev": "nodemon server" }, "keywords": [ "dev", @@ -19,5 +20,8 @@ "dependencies": { "ejs": "^3.1.5", "express": "^4.17.1" + }, + "devDependencies": { + "nodemon": "^2.0.20" } }