Bumps [bcrypt](https://github.com/kelektiv/node.bcrypt.js) from 5.1.0 to 5.1.1. - [Release notes](https://github.com/kelektiv/node.bcrypt.js/releases) - [Changelog](https://github.com/kelektiv/node.bcrypt.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/kelektiv/node.bcrypt.js/compare/v5.1.0...v5.1.1) --- updated-dependencies: - dependency-name: bcrypt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.2 KiB
JSON
41 lines
1.2 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.1",
|
|
"express": "^4.18.2",
|
|
"joi": "^17.9.2",
|
|
"mongoose": "^7.4.3",
|
|
"mongoose-field-encryption": "^7.0.1",
|
|
"nodemailer": "^6.9.4",
|
|
"speakeasy": "^2.0.0",
|
|
"ts-md5": "^1.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^20.5.1",
|
|
"@types/nodemailer": "^6.4.9",
|
|
"@types/speakeasy": "^2.0.7",
|
|
"@typescript-eslint/eslint-plugin": "^6.4.0",
|
|
"@typescript-eslint/parser": "^6.4.0",
|
|
"eslint": "^8.47.0",
|
|
"nodemon": "^3.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsc-alias": "^1.8.7",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|