Files
ScoreSpot/package.json

30 lines
768 B
JSON
Raw Normal View History

2024-03-12 01:10:59 -06:00
{
2024-04-10 22:22:01 -06:00
"name": "scorespot",
2024-04-30 21:19:35 -06:00
"main": "index.js",
2024-03-12 01:10:59 -06:00
"dependencies": {
"axios": "^1.1.3",
2024-04-10 22:22:01 -06:00
"bcrypt": "^5.1.0",
2024-03-15 03:27:25 -06:00
"bcryptjs": "^2.4.3",
2024-03-12 01:10:59 -06:00
"body-parser": "1.20.0",
"express": "^4.6.1",
"express-handlebars": "^7.1.2",
2024-03-12 01:10:59 -06:00
"express-session": "1.17.3",
2024-04-10 22:22:01 -06:00
"handlebars": "^4.7.8",
2024-04-03 22:05:41 -06:00
"moment": "^2.30.1",
"pg-promise": "^10.11.1"
2024-03-12 01:10:59 -06:00
},
2024-04-10 22:22:01 -06:00
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
2024-04-11 08:36:52 -06:00
"mocha": "^6.2.3",
"nodemon": "^2.0.22",
2024-04-10 22:22:01 -06:00
"npm-run-all": "^4.1.5"
},
2024-03-12 01:10:59 -06:00
"scripts": {
"prestart": "npm install",
2024-04-10 22:22:01 -06:00
"start": "nodemon index.js",
"test": "mocha",
"testandrun": "npm run prestart && npm run test && npm start"
2024-03-12 01:10:59 -06:00
}
}