Backend/package.json
dependabot[bot] 7057a15f6b
Bump @types/node from 20.1.4 to 20.7.0
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.1.4 to 20.7.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-25 23:59:32 +00:00

36 lines
1.0 KiB
JSON

{
"name": "backend",
"version": "1.0.0-ALPHA",
"description": "The QuickByte Backend",
"main": "server.ts",
"repository": "https://github.com/QuickByteHosting/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",
"nodemailer": "^6.9.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/node": "^20.7.0",
"@types/nodemailer": "^6.4.8",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
}
}