MERN_sample_app/package.json
dependabot[bot] 7854245cff
Bump mpath and mongoose (#36)
Bumps [mpath](https://github.com/aheckmann/mpath) to 0.8.4 and updates ancestor dependency [mongoose](https://github.com/Automattic/mongoose). These dependencies need to be updated together.


Updates `mpath` from 0.8.3 to 0.8.4
- [Release notes](https://github.com/aheckmann/mpath/releases)
- [Changelog](https://github.com/mongoosejs/mpath/blob/master/History.md)
- [Commits](https://github.com/aheckmann/mpath/compare/0.8.3...0.8.4)

Updates `mongoose` from 5.12.2 to 5.13.15
- [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/5.12.2...5.13.15)

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

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-22 18:44:56 +01:00

35 lines
991 B
JSON

{
"name": "mern_demo",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node --experimental-modules --experimental-json-modules server.js",
"server": "nodemon --experimental-json-modules server.js",
"client": "npm start --prefix client",
"client-install": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"coverage": "jest --coverage",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^5.3.0",
"express": "^4.17.1",
"firebase-admin": "^11.3.0",
"helmet": "^3.23.3",
"moment": "^2.29.4",
"mongoose": "^5.13.15"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"type": "module",
"engines": {
"node": ">=13.10"
}
}