Changes to the project file structure. Node_modules and package.json moved outside of src

This commit is contained in:
Lucas Patenaude
2024-04-04 14:53:12 -06:00
parent 95782fbcf4
commit d65206683e
2547 changed files with 515 additions and 378100 deletions

View File

@@ -0,0 +1,19 @@
{
"name": "web-services",
"main": "index.js",
"dependencies": {
"axios": "^1.1.3",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "1.20.0",
"express": "^4.6.1",
"express-handlebars": "^7.1.2",
"express-session": "1.17.3",
"nodemon": "2.0.20",
"pg-promise": "^10.11.1"
},
"scripts": {
"prestart": "npm install",
"start": "nodemon src/index.js"
}
}