{ "name": "oetzi-backend", "version": "0.4.0", "description": "Ötzi game backend.", "main": "src/index.js", "scripts": { "build": "tsc", "start": "NODE_PATH=./dist node dist/index.js", "serve": "nodemon src/index.ts", "lint:check": "eslint .", "lint:fix": "eslint . --fix", "format:check": "prettier . --check", "format:fix": "prettier . --write", "style:check": "npm-run-all --serial format:check lint:check", "style:fix": "npm-run-all --serial format:fix lint:fix", "test": "jest", "coverage": "jest --coverage", "watch:test": "jest --watch" }, "dependencies": { "@sinclair/typebox": "^0.23.4", "@types/sharp": "^0.29.5", "@xmldom/xmldom": "^0.8.1", "axios": "^0.26.0", "ejs": "^3.1.6", "fastify": "^3.27.1", "fastify-cors": "^6.0.2", "fastify-static": "^4.6.1", "fastify-swagger": "^5.0.0", "knex": "^1.0.3", "pg": "^8.7.3", "point-of-view": "^5.2.0", "sharp": "^0.30.2" }, "devDependencies": { "@types/ejs": "^3.1.0", "@types/jest": "^27.0.3", "@types/node": "^16.11.11", "@typescript-eslint/eslint-plugin": "^5.5.0", "@typescript-eslint/parser": "^5.5.0", "eslint": "^8.3.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-jest": "^25.3.0", "eslint-plugin-prettier": "^4.0.0", "jest": "^27.4.2", "node-notifier": "^10.0.1", "nodemon": "^2.0.15", "pino-pretty": "^7.5.1", "prettier": "^2.5.1", "ts-jest": "^27.0.7", "ts-node": "^10.5.0", "typescript": "^4.5.2" }, "engines": { "node": "16.x" }, "repository": { "url": "https://gitlab.inf.unibz.it/commul/oetzi" }, "license": "MIT", "keywords": [ "node" ] }