package.json
{ "private": true, "name": "ka-mensa-api", "version": "0.0.0", "description": "Karlsruhe (KIT) Mensa API server", "type": "module", "main": "dist/server.js", "scripts": { "start": "npm run build && npm run production", "build": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc", "production": "node --enable-source-maps --disable-proto=delete dist/server.js", "lint": "tsc --noEmit -p tsconfig.lint.json && eslint .", "lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix .", "coverage": "c8 --reporter=lcov --reporter=text --all --src=src npm test", "test": "mocha --require tsx --recursive \"test/**/*.test.*\"" }, "repository": { "type": "git", "url": "git+https://github.com/meyfa/ka-mensa-api.git" }, "keywords": [ "karlsruhe", "mensa", "canteen", "api-server" ], "author": "Fabian Meyer", "license": "MIT", "bugs": { "url": "https://github.com/meyfa/ka-mensa-api/issues" }, "homepage": "https://github.com/meyfa/ka-mensa-api", "engines": { "node": ">=18.16.1" }, "dependencies": { "@fastify/cors": "10.0.2", "fastify": "5.2.1", "fs-adapters": "7.0.2", "group-items": "4.0.0", "ka-mensa-fetch": "4.0.4", "moment": "2.30.1", "ms": "2.1.3", "omniwheel": "0.4.2", "winston": "3.17.0" }, "devDependencies": { "@meyfa/eslint-config": "8.0.1", "@types/mocha": "10.0.10", "@types/ms": "0.7.34", "@types/node": "22.13.4", "c8": "10.1.3", "eslint": "9.20.1", "mocha": "11.1.0", "tsx": "4.19.3", "typescript": "5.7.3" }}