IT4C.dev/backend/package.json
dependabot[bot] f986fb5a25
build(deps): bump @types/nodemailer from 7.0.9 to 7.0.11 in /backend (#656)
Bumps [@types/nodemailer](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/nodemailer) from 7.0.9 to 7.0.11.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/nodemailer)

---
updated-dependencies:
- dependency-name: "@types/nodemailer"
  dependency-version: 7.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-24 02:28:24 +01:00

43 lines
1.1 KiB
JSON

{
"name": "it4c.dev-backend",
"version": "1.0.0",
"description": "IT4C.dev backend",
"license": "Apache-2.0",
"author": "Ulf Gebhardt",
"type": "module",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/IT4Change/IT4C.dev.git"
},
"scripts": {
"start": "node ./build/index.js",
"build": "tsup src/index.ts --format esm --clean --out-dir build",
"dev": "tsx watch ./src/index.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"lint": "eslint --max-warnings 0 .",
"update": "npx npm-check-updates"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"eslint": "^9.39.2",
"eslint-config-it4c": "^0.11.2",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@fastify/type-provider-typebox": "^6.1.0",
"@types/nodemailer": "^7.0.11",
"fastify": "^5.7.4",
"nodemailer": "^8.0.1",
"ts-dotenv": "^0.9.1"
},
"imports": {
"#src/*": "./src/*",
"#root/*": "./*"
}
}