Fixes to file structure

This commit is contained in:
Lucas Patenaude
2024-04-30 21:19:35 -06:00
parent 184707de83
commit 289e7641b4
7 changed files with 15 additions and 15 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "scorespot",
"main": "index.js",
"dependencies": {
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "1.20.0",
"express": "^4.6.1",
"express-handlebars": "^7.1.2",
"express-session": "1.17.3",
"handlebars": "^4.7.8",
"moment": "^2.30.1",
"pg-promise": "^10.11.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^6.2.3",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5"
},
"scripts": {
"prestart": "npm install",
"start": "nodemon index.js",
"test": "mocha",
"testandrun": "npm run prestart && npm run test && npm start"
}
}