geraldokandonga / votenamibia-api

Find Voting Information, Region, Constituencies and Polling Stations for Namibia's Regional, Local and Presidential Elections.
http://www.vote.com.na
MIT License
0 stars 3 forks source link

Added the nodemon to devDependencies #2

Closed mtshikomba closed 3 years ago

mtshikomba commented 3 years ago

The nodemon package is used when running the $ npm run dev as can be seen in package.json: "dev": "nodemon server.js",. However nodemon is not part of the dependencies list. I've added it to the required devDependencies in package.json:

{ . . . "devDependencies": { "nodemon": "^2.0.6" }, . . . }

mtshikomba commented 3 years ago

Updated the package-lock.json file after adding the nodemon package.

geraldokandonga commented 3 years ago

Hi, @dev-mtshikomba thanks for contribution, I noticed that's because I have nodemon installed globally on my machine so instead forgot to add it to the package.json

Cheers