74 lines
2.1 KiB
JSON
74 lines
2.1 KiB
JSON
{
|
|
"name": "@manydecks/server",
|
|
"version": "1.0.0",
|
|
"author": "Reread Games <team@rereadgames.com>",
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": true,
|
|
"description": "A place to make and share custom decks for Massive Decks.",
|
|
"repository": "github:Lattyware/manydecks",
|
|
"engines": {
|
|
"node": "14.x.x"
|
|
},
|
|
"type": "module",
|
|
"module": "src/index.ts",
|
|
"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\""
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.17.1",
|
|
"express-async-errors": "^3.1.1",
|
|
"express-easy-zip": "^1.1.5",
|
|
"express-winston": "^4.0.5",
|
|
"fast-json-patch": "^3.0.0-1",
|
|
"fp-ts": "^2.8.3",
|
|
"google-auth-library": "^6.1.1",
|
|
"hashids": "^2.2.1",
|
|
"helmet": "^4.1.1",
|
|
"http-status-codes": "^2.1.4",
|
|
"io-ts": "^2.2.11",
|
|
"json5": "^2.1.3",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"jwks-rsa": "^1.10.1",
|
|
"node-pg-migrate": "^5.8.0",
|
|
"pg": "^8.4.1",
|
|
"postgres-migrations": "^5.1.0",
|
|
"source-map-support": "^0.5.19",
|
|
"unique-names-generator": "^4.3.1",
|
|
"uuid": "^8.3.1",
|
|
"winston": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.8",
|
|
"@types/express-winston": "^4.0.0",
|
|
"@types/fast-json-patch": "^1.1.5",
|
|
"@types/hashids": "^1.0.32",
|
|
"@types/helmet": "0.0.48",
|
|
"@types/json5": "0.0.30",
|
|
"@types/jsonwebtoken": "^8.5.0",
|
|
"@types/pg": "^7.14.5",
|
|
"@types/source-map-support": "^0.5.3",
|
|
"@types/uuid": "^8.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.4.0",
|
|
"@typescript-eslint/parser": "^4.4.0",
|
|
"eslint": "^7.11.0",
|
|
"eslint-config-prettier": "^6.12.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"nodemon": "^2.0.4",
|
|
"prettier": "^2.1.2",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"nodemonConfig": {
|
|
"ext": "ts,sql,json,json5,js",
|
|
"ignore": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|
|
}
|