Files
CoqDecks/server/package.json
T
2019-06-22 08:04:52 +01:00

64 lines
1.9 KiB
JSON

{
"name": "server",
"version": "2.0.0",
"description": "Massive Decks server.",
"main": "dist/index.js",
"scripts": {
"generate-json-validators": "npx typescript-json-validator src/ts/action/validation.ts --collection --noExtraProps--format=full --aliasRefs --ignoreErrors && sed -i '1s;^;/* eslint-disable */\\n;' src/ts/action/validation.validator.ts",
"build": "tsc",
"prestart": "npm run build",
"dev": "nodemon .",
"debug": "nodemon --inspect .",
"generate-secret": "npm run prestart && node dist/secret.js"
},
"author": "Reread Games <team@rereadgames.com>",
"license": "AGPL-3.0-or-later",
"private": true,
"engines": {
"node": ">=0.12"
},
"dependencies": {
"ajv": "^6.10.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-winston": "^3.2.0",
"express-ws": "^4.0.0",
"generic-pool": "^3.7.1",
"hashids": "^1.2.2",
"helmet": "^3.18.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.0.2",
"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.4",
"@types/wu": "^2.1.39",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^6.0.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"nodemon": "^1.19.1",
"prettier": "1.18.2",
"typescript": "^3.5.2",
"typescript-json-validator": "^2.2.2"
}
}