mirror of
https://github.com/rjNemo/MERN_sample_app
synced 2026-06-06 00:36:39 +00:00
Bumps [moment](https://github.com/moment/moment) from 2.29.1 to 2.29.2. - [Release notes](https://github.com/moment/moment/releases) - [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md) - [Commits](https://github.com/moment/moment/compare/2.29.1...2.29.2) --- updated-dependencies: - dependency-name: moment dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
988 B
JSON
35 lines
988 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": "^9.5.0",
|
|
"helmet": "^3.23.3",
|
|
"moment": "^2.29.2",
|
|
"mongoose": "^5.12.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.7"
|
|
},
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=13.10"
|
|
}
|
|
}
|