-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.29 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.29 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
{
"name": "esptransit-server",
"version": "1.0.0",
"description": "HAFAS web server with Redis caching",
"type": "module",
"scripts": {
"dev": "bun src/index.ts",
"start": "bun src/index.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome check --no-errors-on-unmatched --files-ignore-unknown=true"
},
"dependencies": {
"@fastify/compress": "^8",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.7.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.213.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.213.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
"@opentelemetry/resources": "^2.6.0",
"@opentelemetry/sdk-logs": "^0.213.0",
"@opentelemetry/sdk-node": "^0.213.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@scalar/fastify-api-reference": "^1.48.7",
"@scalar/openapi-to-markdown": "^0.4.7",
"fastify": "^5.8.2",
"hafas-client": "^6",
"ioredis": "^5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@types/bun": "^1.3.10",
"@types/hafas-client": "^6.3.1",
"@types/node": "^25.5.0",
"typescript": "^5"
}
}