committed files

This commit is contained in:
dominicjk
2024-04-11 08:36:52 -06:00
8260 changed files with 866980 additions and 243 deletions

View File

@@ -1,20 +1,29 @@
{
"name": "web-services",
"main": "index.js",
"name": "scorespot",
"main": "src/index.js",
"dependencies": {
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"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",
"nodemon": "2.0.20",
"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 src/index.js"
"start": "nodemon index.js",
"test": "mocha",
"testandrun": "npm run prestart && npm run test && npm start"
}
}