-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.94 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.94 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
{
"name": "disaster-feed",
"version": "0.1.0",
"description": "Disaster Feed API Service",
"author": "Neuwcodebox",
"repository": "neuwcodebox/disaster-feed",
"main": "index.ts",
"type": "module",
"private": true,
"scripts": {
"up": "docker compose up -d",
"stop": "docker compose stop",
"down": "docker compose down",
"dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty",
"build": "tsup-node --format esm",
"start": "node dist/index.js",
"clean": "rimraf dist coverage",
"lint": "biome check src/",
"lint:fix": "biome check src/ --fix",
"format": "biome format src/",
"test": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@hono/node-server": "^1.19.7",
"@hono/swagger-ui": "^0.5.2",
"@hono/zod-openapi": "^1.2.0",
"@langfuse/otel": "^4.6.1",
"@langfuse/tracing": "^4.6.1",
"@opentelemetry/sdk-node": "^0.211.0",
"bullmq": "^5.60.0",
"cheerio": "^1.1.2",
"dotenv": "^17.2.3",
"hono": "^4.11.1",
"iconv-lite": "^0.7.1",
"inversify": "^7.10.8",
"ioredis": "^5.7.0",
"kysely": "^0.28.9",
"openai": "^6.15.0",
"pg": "^8.16.3",
"pino": "^10.1.0",
"reflect-metadata": "^0.2.2",
"uuid": "^13.0.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/cors": "^2.8.19",
"@types/pg": "^8.15.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pino-pretty": "^13.1.3",
"rimraf": "^6.1.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
"biome check --fix --no-errors-on-unmatched"
]
},
"tsup": {
"entry": [
"src/index.ts",
"src/infra/db/migrations/*.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"platform": "node",
"target": "node24"
}
}