Files
CoqDecks/server/package.json
T
2020-05-16 16:00:24 +01:00

79 lines
2.4 KiB
JSON

{
"name": "@massivedecks/server",
"description": "The game server for Massive Decks, a comedy party game.",
"version": "2.0.0",
"author": "Reread Games <team@rereadgames.com>",
"license": "AGPL-3.0-or-later",
"private": true,
"repository": "github:Lattyware/massivedecks",
"engines": {
"node": "13.x.x"
},
"type": "module",
"module": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npx tsc",
"prestart": "npm run build",
"start": "node --es-module-specifier-resolution=node dist/index.js",
"predev": "npm run build",
"dev": "nodemon --es-module-specifier-resolution=node dist/index.js",
"predebug": "npm run build",
"debug": "nodemon --inspect --es-module-specifier-resolution=node dist/index.js",
"generate-json-validators": "bash generate-validators.sh",
"generate-secret": "npm run prestart && node --es-module-specifier-resolution=node dist/secret.js"
},
"files": [
"dist/*",
"config.json5"
],
"dependencies": {
"ajv": "^6.12.2",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-winston": "^4.0.3",
"express-ws": "^4.0.0",
"fast-json-patch": "^3.0.0-1",
"generic-pool": "^3.7.1",
"hashids": "^2.2.1",
"helmet": "^3.22.0",
"http-status-codes": "^1.3.2",
"json5": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.25.3",
"pg": "^8.2.0",
"rfc6902": "^3.0.4",
"source-map-support": "^0.5.19",
"uuid": "^8.0.0",
"winston": "^3.2.1",
"wu": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.7",
"@types/express-winston": "^4.0.0",
"@types/express-ws": "^3.0.0",
"@types/generic-pool": "^3.1.9",
"@types/hashids": "^1.0.30",
"@types/helmet": "^0.0.47",
"@types/json5": "0.0.30",
"@types/jsonwebtoken": "^8.5.0",
"@types/pg": "^7.14.3",
"@types/qs": "^6.9.2",
"@types/source-map-support": "^0.5.1",
"@types/uuid": "^7.0.3",
"@types/wu": "^2.1.42",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"typescript": "^3.9.2",
"typescript-json-validator": "^2.4.2"
}
}