mirror of
https://github.com/rjNemo/MERN_sample_app
synced 2026-06-06 08:46:39 +00:00
Bumps [cookie](https://github.com/jshttp/cookie) to 0.7.1 and updates ancestor dependency [express](https://github.com/expressjs/express). These dependencies need to be updated together. Updates `cookie` from 0.6.0 to 0.7.1 - [Release notes](https://github.com/jshttp/cookie/releases) - [Commits](https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.1) Updates `express` from 4.19.2 to 4.21.1 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/4.21.1/History.md) - [Commits](https://github.com/expressjs/express/compare/4.19.2...4.21.1) --- updated-dependencies: - dependency-name: cookie dependency-type: indirect - dependency-name: express dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
991 B
JSON
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.21.1",
|
|
"firebase-admin": "^12.1.1",
|
|
"helmet": "^3.23.3",
|
|
"moment": "^2.29.4",
|
|
"mongoose": "^5.13.20"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.20"
|
|
},
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=13.10"
|
|
}
|
|
}
|