-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "logging-policy-node",
"private": true,
"description": "Reference implementation of Logging Policy on Node.js",
"homepage": "https://github.com/bluegroundltd/logging-policy#readme",
"bugs": {
"url": "https://github.com/bluegroundltd/logging-policy/issues"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/bluegroundltd/logging-policy.git"
},
"license": "UNLICENSED",
"author": "stratosp@theblueground.com",
"main": "build/index.js",
"scripts": {
"build": "esbuild \"./src/**\" --platform=node --bundle=false --outdir=build --format=esm",
"dev:fastify": "tsx watch ./src/main.ts --fastify | pino-pretty",
"dev:express": "tsx watch ./src/main.ts --express | pino-pretty",
"dev:koa": "tsx watch ./src/main.ts --koa | pino-pretty",
"format": "prettier --write ./src",
"apidoc": "apidoc -i ./src -o ./docs && open-cli ./docs/index.html",
"lint": "run-s lint:prettier lint:eslint lint:tsc",
"lint:eslint": "eslint ./src",
"lint:prettier": "prettier --check ./src",
"lint:tsc": "tsc --noEmit",
"prebuild": "rimraf build",
"start:fastify": "node build/main.js --fastify",
"start:express": "node build/main.js --express"
},
"dependencies": {
"@bluegroundltd/async-mdc": "1.0.0",
"@fastify/cookie": "^9.3.1",
"@fastify/express": "^3.0.0",
"@fastify/session": "^10.9.0",
"amqplib": "^0.10.4",
"axios": "1.12.2",
"bull": "^4.15.0",
"caller-path": "^4.0.0",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"express-session": "^1.18.0",
"fastify": "^4.27.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.1",
"kafkajs": "^2.2.4",
"koa": "2.16.2",
"koa-bodyparser": "4.4.1",
"koa-router": "12.0.1",
"koa-session": "6.4.0",
"ksuid": "^3.0.0",
"pino": "^9.2.0",
"pino-pretty": "^11.1.0",
"response-time": "2.3.4",
"ua-parser-js": "^1.0.38",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/amqplib": "^0.10.5",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/koa": "2.15.0",
"@types/koa-bodyparser": "4.3.12",
"@types/koa-cookie": "1.0.3",
"@types/koa-router": "7.4.8",
"@types/koa-session": "6.4.5",
"@types/node": "^20.12.12",
"@types/response-time": "2.3.8",
"@types/ua-parser-js": "^0.7.39",
"@types/yargs": "^17.0.32",
"apidoc": "0.50.1",
"dotenv": "^16.4.5",
"esbuild": "0.25.9",
"eslint": "9.3.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.3.0",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
},
"overrides": {
"eslint": "9.3.0"
},
"engines": {
"node": ">=20.11.0"
}
}