-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.66 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
{
"name": "aggregation-service",
"version": "1.0.0",
"description": "Wahb Aggregation Service - Content ingestion and processing pipeline",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:intake": "tsx watch src/index.ts intake-control",
"dev:news": "tsx watch src/index.ts news",
"dev:pods-control": "tsx watch src/index.ts pods-control",
"dev:media-executor": "tsx src/index.ts media-executor",
"dev:media-maintenance": "tsx watch src/index.ts media-maintenance",
"build": "tsc",
"start": "node dist/index.js",
"start:intake": "node dist/index.js intake-control",
"start:news": "node dist/index.js news",
"start:pods-control": "node dist/index.js pods-control",
"start:media-executor": "node dist/index.js media-executor",
"start:media-maintenance": "node dist/index.js media-maintenance",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"seed": "tsx src/scripts/seed-jobs.ts",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:e2e": "vitest run tests/e2e",
"test:contract": "vitest run tests/contract",
"test:failure": "vitest run tests/failure",
"test:integration": "vitest run tests/integration --passWithNoTests",
"test:load": "tsx tests/load/synthetic-producer.ts",
"test:media": "tsx src/scripts/test-media-job.ts",
"test:ai": "tsx src/scripts/test-ai-job.ts",
"telegram:auth": "tsx src/scripts/telegram-auth.ts",
"retry-failed": "tsx src/scripts/retry-failed.ts",
"retry-pending": "tsx src/scripts/retry-pending.ts"
},
"keywords": [
"wahb",
"aggregation",
"bullmq",
"fastify"
],
"author": "",
"license": "UNLICENSED",
"dependencies": {
"@aws-sdk/client-s3": "^3.700.0",
"@fastify/cors": "^11.2.0",
"@fastify/multipart": "^10.0.0",
"@mozilla/readability": "^0.6.0",
"bullmq": "^5.34.3",
"cheerio": "^1.0.0",
"dotenv": "^17.2.4",
"fastify": "^5.2.1",
"form-data": "^4.0.1",
"input": "^1.0.1",
"ioredis": "^5.4.2",
"jsdom": "^25.0.1",
"pino": "^9.6.0",
"prom-client": "^15.1.3",
"rss-parser": "^3.13.0",
"telegram": "^2.26.22",
"undici": "7.28.0",
"uuid": "^11.0.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^8.57.1",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
}
}