IT4C.dev/backend/package.json
dependabot[bot] 5096ad1e68
build(deps): bump fastify from 5.7.2 to 5.7.4 in /backend (#645)
Bumps [fastify](https://github.com/fastify/fastify) from 5.7.2 to 5.7.4.
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](https://github.com/fastify/fastify/compare/v5.7.2...v5.7.4)

---
updated-dependencies:
- dependency-name: fastify
  dependency-version: 5.7.4
  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-08 18:33:50 +01:00

61 lines
1.4 KiB
JSON

{
"name": "it4c.dev-backend",
"version": "1.0.0",
"description": "IT4C.dev backend",
"license": "Apache-2.0",
"author": "Ulf Gebhardt",
"type": "commonjs",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/IT4Change/IT4C.dev.git"
},
"scripts": {
"start": "node ./build/src/index.js",
"build": "tsc",
"dev": "tsx watch ./src/index.ts",
"test:unit": "jest",
"test:lint:eslint": "eslint --max-warnings 0 .",
"update": "npx npm-check-updates"
},
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-it4c": "^0.8.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@fastify/type-provider-typebox": "^5.2.0",
"@types/jest": "^30.0.0",
"@types/nodemailer": "^7.0.9",
"fastify": "^5.7.4",
"nodemailer": "^8.0.1",
"ts-dotenv": "^0.9.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": [
"./jest/setup.loadEnv.ts"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"modulePathIgnorePatterns": [
"<rootDir>/build/"
]
},
"imports": {
"#src/*": "./src/*",
"#root/*": "./*"
}
}