Files
elm-0.19-workshop/intro/server/package.json
dependabot[bot] a519ac169f Bump json5, jest and jest-cli in /intro/server
Bumps [json5](https://github.com/json5/json5) to 2.2.3 and updates ancestor dependencies [json5](https://github.com/json5/json5), [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) and [jest-cli](https://github.com/facebook/jest/tree/HEAD/packages/jest-cli). These dependencies need to be updated together.


Updates `json5` from 0.5.1 to 2.2.3
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v0.5.1...v2.2.3)

Updates `jest` from 21.2.1 to 29.3.1
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/commits/v29.3.1/packages/jest)

Updates `jest-cli` from 21.2.1 to 29.3.1
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/commits/v29.3.1/packages/jest-cli)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
- dependency-name: jest
  dependency-type: direct:development
- dependency-name: jest-cli
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-05 23:46:18 +00:00

48 lines
1.0 KiB
JSON

{
"name": "moleculer-realworld-example-app",
"version": "1.0.0",
"description": "RealWorld example app with Moleculer microservices framework",
"scripts": {
"start": "moleculer-runner services"
},
"keywords": [
"microservices",
"moleculer",
"realworld"
],
"author": "",
"license": "MIT",
"devDependencies": {
"eslint": "4.11.0",
"jest": "29.3.1",
"jest-cli": "29.3.1",
"moleculer-repl": "^0.3.0",
"npm-check": "5.5.2"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"jsonwebtoken": "8.1.0",
"lodash": "4.17.4",
"moleculer": "^0.11.0",
"moleculer-db": "0.7.0",
"moleculer-db-adapter-mongo": "0.1.6",
"moleculer-web": "0.6.0-beta7",
"nats": "0.7.24",
"slug": "0.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ice-services/moleculer-realworld-example-app.git"
},
"engines": {
"node": ">= 6.x.x"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./services",
"roots": [
"../test"
]
}
}