Files
CoqDecks/server/package.json
T
2021-09-19 13:10:41 +01:00

84 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": "16.x.x"
},
"type": "module",
"module": "dist/index.js",
"scripts": {
"build": "npx tsc",
"prestart": "npm run build",
"start": "node --es-module-specifier-resolution=node dist/index.js",
"preinspect": "npm run build",
"inspect": "node --inspect-brk --es-module-specifier-resolution=node dist/index.js",
"dev": "nodemon --exec \"npm run start\"",
"debug": "nodemon --exec \"npm run inspect\"",
"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.6",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-winston": "^4.0.5",
"express-ws": "^4.0.0",
"fast-json-patch": "^3.0.0-1",
"generic-pool": "^3.7.1",
"hashids": "^2.2.8",
"helmet": "^4.3.1",
"http-status-codes": "^2.1.4",
"json5": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"pg": "^8.5.1",
"rfc6902": "^4.0.1",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"wu": "^2.1.0"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/express-serve-static-core": "^4.17.17",
"@types/express-winston": "^4.0.0",
"@types/express-ws": "^3.0.0",
"@types/generic-pool": "^3.1.9",
"@types/hashids": "^2.0.1",
"@types/helmet": "^4.0.0",
"@types/json5": "2.2.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/pg": "^8.6.0",
"@types/qs": "^6.9.5",
"@types/source-map-support": "^0.5.3",
"@types/uuid": "^8.3.0",
"@types/wu": "^2.1.42",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.0",
"nodemon": "^2.0.6",
"prettier": "2.3.0",
"typescript": "^4.1.3",
"typescript-json-validator": "^2.4.2"
},
"nodemonConfig": {
"ext": "ts,js,json,json5",
"ignore": [
"dist"
]
}
}