Update deps, fix build errors

This commit is contained in:
Darren Clarke 2023-08-07 09:27:51 +02:00
parent c47514d2f0
commit e9379fd1fb
20 changed files with 5120 additions and 2012 deletions

View file

@ -18,7 +18,7 @@
},
"devDependencies": {
"@types/figlet": "^1.5.6",
"@types/lodash": "^4.14.195",
"@types/lodash": "^4.14.196",
"@types/node": "*",
"@types/uuid": "^9.0.2",
"camelcase-keys": "^8.0.2",
@ -34,7 +34,7 @@
"@hapi/hapi": "^21.3.2",
"@hapi/hoek": "^11.0.2",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.2",
"@hapi/vision": "^7.0.3",
"@hapipal/schmervice": "^3.0.0",
"@promster/hapi": "^8.0.6",
"@promster/server": "^7.0.8",
@ -54,10 +54,10 @@
"http-terminator": "^3.2.0",
"joi": "^17.9.2",
"lodash": "^4.17.21",
"next-auth": "^4.22.3",
"pg-promise": "^11.5.0",
"pino": "^8.14.1",
"pino-pretty": "^10.1.0",
"next-auth": "^4.22.4",
"pg-promise": "^11.5.3",
"pino": "^8.15.0",
"pino-pretty": "^10.2.0",
"prom-client": "^14.x.x",
"uuid": "^9.0.0"
}

View file

@ -12,10 +12,12 @@ import * as pino from "pino";
declare module "@hapi/hapi" {
interface Server {
// @ts-expect-error
logger: pino.Logger;
}
interface Request {
// @ts-expect-error
logger: pino.Logger;
}
}