{ "name": "server", "description": "The game server for Massive Decks, a comedy party game.", "version": "2.0.0", "author": "Reread Games ", "license": "AGPL-3.0-or-later", "private": true, "repository": "github:Lattyware/massivedecks", "engines": { "node": ">=11 <12" }, "main": "dist/index.js", "scripts": { "prepublishOnly": "npm run build", "build": "tsc", "prestart": "npm run build", "start": "node dist/index.js", "dev": "nodemon .", "debug": "nodemon --inspect .", "generate-json-validators": "npx typescript-json-validator src/ts/action/validation.ts --collection --noExtraProps --format=full --aliasRefs --ignoreErrors && sed -i -e 's/allErrors: true/allErrors: false/g' -e 's/ChangeBase<\"\\(.*\\)\",\\(.*\\)>/ChangeBase\\1/g' -e 's/\\/\\* tslint:disable \\*\\//\\/\\* eslint-disable \\*\\//g' src/ts/action/validation.validator.ts", "generate-secret": "npm run prestart && node dist/secret.js" }, "files": [ "dist/*", "config.json5" ], "dependencies": { "ajv": "^6.10.2", "axios": "^0.19.0", "body-parser": "^1.19.0", "express": "^4.17.1", "express-async-errors": "^3.1.1", "express-winston": "^3.2.1", "express-ws": "^4.0.0", "generic-pool": "^3.7.1", "hashids": "^1.2.2", "helmet": "^3.20.0", "http-status-codes": "^1.3.2", "json5": "^2.1.0", "jsonwebtoken": "^8.5.1", "moment": "^2.24.0", "source-map-support": "^0.5.12", "ts-postgres": "^1.1.0", "uuid": "^3.3.2", "winston": "^3.2.1", "wu": "^2.1.0" }, "devDependencies": { "@types/express": "^4.17.0", "@types/express-winston": "^3.0.3", "@types/express-ws": "^3.0.0", "@types/generic-pool": "^3.1.9", "@types/hashids": "^1.0.30", "@types/helmet": "^0.0.43", "@types/json5": "0.0.30", "@types/jsonwebtoken": "^8.3.2", "@types/source-map-support": "^0.5.0", "@types/uuid": "^3.4.5", "@types/wu": "^2.1.39", "@typescript-eslint/eslint-plugin": "^1.13.0", "@typescript-eslint/parser": "^1.13.0", "eslint": "^6.1.0", "eslint-config-prettier": "^6.0.0", "eslint-plugin-prettier": "^3.1.0", "nodemon": "^1.19.1", "prettier": "1.18.2", "typescript": "^3.5.3", "typescript-json-validator": "^2.2.2" } }