1
0
mirror of https://github.com/docker/awesome-compose.git synced 2025-06-30 09:33:44 +00:00
awesome-compose/react-express-mongodb/backend/package.json
dependabot[bot] c8ddd438ab
Bump mongoose from 6.0.9 to 8.9.5 in /react-express-mongodb/backend
Bumps [mongoose](https://github.com/Automattic/mongoose) from 6.0.9 to 8.9.5.
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Automattic/mongoose/compare/6.0.9...8.9.5)

---
updated-dependencies:
- dependency-name: mongoose
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-16 20:51:40 +00:00

31 lines
752 B
JSON

{
"name": "docker_node_mongo_starter",
"version": "1.0.0",
"description": "docker starter with node js and mongodb services",
"main": "index.js",
"scripts": {
"start": "node server.js",
"format": "prettier --write {**/,}*.js",
"lint": "prettier --check {**/,}*.js",
"dev": "nodemon server.js"
},
"author": "Syed Afzal",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.4",
"express": "^4.17.1",
"lodash": "^4.17.13",
"mongodb": "^3.0.7",
"mongoose": "^8.9.5",
"simple-node-logger": "^18.12.23",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
}
}