Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 5.48.1 to 5.48.2. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.48.2/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
38 lines
1.1 KiB
JSON
38 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.7.0",
|
|
"mongoose": "^6.8.3",
|
|
"mongoose-field-encryption": "^5.0.2",
|
|
"nodemailer": "^6.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/express": "^4.17.15",
|
|
"@types/node": "^18.11.18",
|
|
"@types/nodemailer": "^6.4.7",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
"@typescript-eslint/parser": "^5.48.2",
|
|
"eslint": "^8.32.0",
|
|
"nodemon": "^2.0.20",
|
|
"ts-node": "^10.9.1",
|
|
"tsc-alias": "^1.8.2",
|
|
"tsconfig-paths": "^4.1.2",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|