{ "name": "oetzi-backend", "version": "0.0.1", "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": { "fastify": "^3.27.1", "fastify-cors": "^6.0.2", "json-schema-to-ts": "^1.6.5", "knex": "^1.0.3" }, "devDependencies": { "@types/jest": "^27.0.3", "@types/node": "^16.11.11", "@typescript-eslint/eslint-plugin": "^5.5.0", "@typescript-eslint/parser": "^5.5.0", "@vscode/sqlite3": "^5.0.7", "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", "sqlite3": "^5.0.2", "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" ] }