link-stack/packages/metamigo-common/package.json

65 lines
2 KiB
JSON
Raw Normal View History

2023-02-13 12:41:30 +00:00
{
"name": "@digiresilience/metamigo-common",
2023-02-13 12:41:30 +00:00
"version": "0.2.0",
"description": "",
"main": "build/main/index.js",
"type": "module",
2023-02-13 12:41:30 +00:00
"types": "build/main/index.d.ts",
"author": "Abel Luck <abel@guardianproject.info>",
"license": "AGPL-3.0-or-later",
"private": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"fix:lint": "eslint src --ext .ts --fix",
2023-03-13 11:46:12 +00:00
"fmt": "prettier \"src/**/*.ts\" --write",
"lint": "eslint src --ext .ts && prettier \"src/**/*.ts\" --list-different",
"doc": "typedoc src/ --exclude '**/*.test.ts' --exclude '**/*.spec.ts' --name $npm_package_name --readme README.md --target es2019 --mode file --out build/docs",
"dev": "tsc-watch --build --noClear "
2023-02-13 12:41:30 +00:00
},
"devDependencies": {
"@types/figlet": "^1.5.8",
2023-11-22 11:11:28 +01:00
"@types/lodash": "^4.14.202",
2023-02-13 12:41:30 +00:00
"@types/node": "*",
2024-02-14 12:13:00 +01:00
"@types/uuid": "^9.0.8",
"camelcase-keys": "^9.1.3",
2023-02-13 12:41:30 +00:00
"pg-monitor": "^2.0.0",
"tsc-watch": "^6.0.4",
2024-02-14 12:13:00 +01:00
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
2023-02-13 12:41:30 +00:00
},
"dependencies": {
"@digiresilience/hapi-nextauth": "*",
2023-05-25 08:43:35 +00:00
"@hapi/boom": "^10.0.1",
"@hapi/glue": "^9.0.1",
2024-02-14 12:13:00 +01:00
"@hapi/hapi": "^21.3.3",
"@hapi/hoek": "^11.0.4",
2023-05-25 08:43:35 +00:00
"@hapi/inert": "^7.1.0",
2023-08-07 09:27:51 +02:00
"@hapi/vision": "^7.0.3",
2023-05-25 08:43:35 +00:00
"@hapipal/schmervice": "^3.0.0",
2024-02-14 12:13:00 +01:00
"@promster/hapi": "^13.0.0",
"@promster/server": "^13.0.0",
"@promster/types": "^13.0.0",
"@types/convict": "^6.1.6",
"@types/hapi__glue": "^6.1.9",
2023-02-13 12:41:30 +00:00
"@types/hapi__hapi": "^20.0.13",
"@types/hapi__inert": "^5.2.10",
"@types/hapi__vision": "^5.5.7",
"@types/hapipal__schmervice": "^2.0.7",
2023-07-05 06:56:01 +00:00
"chalk": "^5.3.0",
2024-02-14 12:13:00 +01:00
"commander": "^12.0.0",
2023-02-13 12:41:30 +00:00
"convict": "^6.2.4",
"decamelcase-keys": "^1.1.1",
"figlet": "^1.7.0",
2023-05-25 08:43:35 +00:00
"hapi-pino": "^12.1.0",
2023-02-13 12:41:30 +00:00
"http-terminator": "^3.2.0",
2024-02-14 12:13:00 +01:00
"joi": "^17.12.1",
2023-02-13 12:41:30 +00:00
"lodash": "^4.17.21",
2023-11-22 11:11:28 +01:00
"next-auth": "^4.24.5",
2023-09-06 16:42:52 +02:00
"pg-promise": "^11.5.4",
2024-02-14 12:13:00 +01:00
"pino": "^8.18.0",
"pino-pretty": "^10.3.1",
2023-10-16 09:20:40 +02:00
"prom-client": "^15.x.x",
2023-09-27 11:13:19 +02:00
"uuid": "^9.0.1"
2023-02-13 12:41:30 +00:00
}
}