Files
awesome-compose/react-express-mongodb/backend/package.json
T
dependabot[bot] 9868875b47 Bump semver, mongodb and nodemon in /react-express-mongodb/backend
Bumps [semver](https://github.com/npm/node-semver) to 7.8.4 and updates ancestor dependencies [semver](https://github.com/npm/node-semver), [mongodb](https://github.com/mongodb/node-mongodb-native) and [nodemon](https://github.com/remy/nodemon). These dependencies need to be updated together.


Updates `semver` from 6.3.0 to 7.8.4
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v7.8.4)

Updates `mongodb` from 3.6.5 to 3.7.4
- [Release notes](https://github.com/mongodb/node-mongodb-native/releases)
- [Changelog](https://github.com/mongodb/node-mongodb-native/blob/main/HISTORY.md)
- [Commits](https://github.com/mongodb/node-mongodb-native/compare/v3.6.5...v3.7.4)

Updates `nodemon` from 2.0.3 to 3.1.14
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](https://github.com/remy/nodemon/compare/v2.0.3...v3.1.14)

---
updated-dependencies:
- dependency-name: semver
  dependency-version: 7.8.4
  dependency-type: indirect
- dependency-name: mongodb
  dependency-version: 3.7.4
  dependency-type: direct:production
- dependency-name: nodemon
  dependency-version: 3.1.14
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-10 00:33:04 +00:00

31 lines
753 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.7.4",
"mongoose": "^6.0.9",
"simple-node-logger": "^18.12.23",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^3.1.14",
"prettier": "^2.0.5"
}
}