Backend/package.json
dependabot[bot] 035dd96fa2
Bump @typescript-eslint/eslint-plugin from 5.59.11 to 5.61.0
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.59.11 to 5.61.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.61.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-04 15:37:23 +00:00

40 lines
1.1 KiB
JSON

{
"name": "backend",
"version": "1.0.0-ALPHA",
"description": "The LicenseAPI Backend",
"main": "server.ts",
"repository": "https://github.com/LicenseAPI/Backend.git",
"private": true,
"scripts": {
"dev": "nodemon --watch \"src/**\" -r tsconfig-paths/register src/server.ts",
"ci:eslint": "eslint \"**/*.{ts,tsx}\" --max-warnings=0",
"ci:tsc": "tsc --noemit",
"ci:install": "yarn install --immutable --immutable-cache --check-cache",
"build": "tsc && tsc-alias"
},
"dependencies": {
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"joi": "^17.9.2",
"mongoose": "^7.3.1",
"mongoose-field-encryption": "^6.1.0",
"nodemailer": "^6.9.3",
"speakeasy": "^2.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"@types/nodemailer": "^6.4.8",
"@types/speakeasy": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}