-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 963 Bytes
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
{
"name": "forge-gateway",
"version": "1.0.0",
"description": "Forge — a lightweight, config-driven API gateway and reverse proxy in Node.js/TypeScript",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"forge": "node forge",
"bench": "node loadtests/cli.js"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"ioredis": "^5.4.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"pino": "^9.4.0",
"prom-client": "^15.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.5.0",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=20"
}
}