{ "name": "@odit/lfk-backend", "version": "1.7.0", "main": "src/app.ts", "repository": "https://git.odit.services/lfk/backend", "author": { "name": "ODIT.Services", "email": "info@odit.services", "url": "https://odit.services" }, "contributors": [ { "name": "Philipp Dormann", "email": "philipp@philippdormann.de", "url": "https://philippdormann.de" }, { "name": "Nicolai Ort", "email": "info@nicolai-ort.com", "url": "https://nicolai-ort.com" } ], "license": "CC-BY-NC-SA-4.0", "dependencies": { "@node-rs/argon2": "^2.0.2", "@odit/class-validator-jsonschema": "2.1.1", "axios": "0.21.1", "body-parser": "1.19.0", "check-password-strength": "2.0.2", "class-transformer": "0.3.1", "class-validator": "0.13.0", "consola": "2.15.0", "cookie": "0.4.1", "cookie-parser": "1.4.5", "cors": "2.8.5", "csvtojson": "2.0.10", "dotenv": "8.2.0", "express": "4.17.1", "jsonwebtoken": "8.5.1", "libphonenumber-js": "1.9.9", "mysql": "2.18.1", "nats": "^2.29.3", "pg": "8.5.1", "reflect-metadata": "0.1.13", "routing-controllers": "0.9.0-alpha.6", "routing-controllers-openapi": "2.2.0", "sqlite3": "5.1.7", "typeorm": "0.2.30", "typeorm-routing-controllers-extensions": "0.2.0", "typeorm-seeding": "1.6.1", "uuid": "8.3.2", "validator": "13.5.2" }, "devDependencies": { "@faker-js/faker": "7.6.0", "@odit/license-exporter": "0.0.9", "@types/cors": "2.8.19", "@types/csvtojson": "1.1.5", "@types/express": "5.0.6", "@types/jest": "30.0.0", "@types/jsonwebtoken": "9.0.10", "@types/node": "25.3.0", "auto-changelog": "2.4.0", "cp-cli": "2.0.0", "jest": "26.6.3", "release-it": "14.2.2", "rimraf": "3.0.2", "start-server-and-test": "1.11.7", "ts-jest": "26.5.0", "typedoc": "0.20.19", "typescript": "5.9.3" }, "scripts": { "dev": "bun scripts/dev_watch.ts", "start": "bun dist/app.js", "build": "rimraf ./dist && tsc && cp-cli ./src/static ./dist/static", "docs": "typedoc --out docs src", "test": "jest", "test:watch": "jest --watchAll", "test:ci:generate_env": "bun scripts/create_testenv.ts", "test:ci:run": "start-server-and-test dev http://localhost:4010/api/docs/openapi.json test", "test:ci": "bun run test:ci:generate_env && bun run test:ci:run", "benchmark": "bun scripts/benchmark_scan_intake.ts", "seed": "bun ./node_modules/typeorm/cli.js schema:sync && bun ./node_modules/typeorm-seeding/dist/cli.js seed", "openapi:export": "bun scripts/openapi_export.ts", "licenses:export": "license-exporter --markdown", "changelog:export": "auto-changelog --commit-limit false -p -u --hide-credit", "release": "release-it --only-version" }, "release-it": { "git": { "commit": true, "requireCleanWorkingDir": false, "commitMessage": "chore(release): ${version}", "requireBranch": "dev", "push": true, "tag": true, "tagName": "${version}", "tagAnnotation": "${version}" }, "npm": { "publish": false }, "hooks": { "after:bump": "bun run changelog:export && bun run licenses:export && git add CHANGELOG.md && git add licenses.md" } } }