JoshuaPeddle / Visualizing-Technology-Use-by-Age-and-Region

Comp3100. Team 32. Joshua Peddle & Ethan Mc Donald.
0 stars 1 forks source link

Remove \node_modules\ folder and add package.json #17

Closed JoshuaPeddle closed 2 years ago

JoshuaPeddle commented 2 years ago

Sorry for the massively large Pull request. \node_module\ has a lot of stuff in it. I added a package.json, updated the README.md and removed the \node_modules\ directory.

We shouldn't commit \node_modules\ folder to Github as these could be system dependent.

The preferred solution is to use package.json to manage dependencies and run 'npm install' in the project root folder to let npm install them.

I've added installation/running instructions in README.md.

JoshuaPeddle commented 2 years ago

Just added .gitignore to main branch to ignore node_modules and package-lock.json.