-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
{
"name": "@o3co/auth.proxy",
"description": "Proxy to validate authorization token",
"packageManager": "pnpm@10.29.3",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"imports": {
"#/*": "./src/*"
},
"dependencies": {
"@o3co/auth.utils": "^0.0.3",
"@o3co/ts.hocon": "^0.1.2",
"cors": "2.8.x",
"cross-env": "7.0.x",
"express": "^5.2.1",
"express-http-proxy": "^2.1.2",
"jsonwebtoken": "9.0.x",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-http-proxy": "^1.6.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "24.10.x",
"@types/supertest": "^7.2.0",
"debug": "4.4.3",
"pino": "^10.3.1",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "5.9.x",
"vitest": "^4.1.4"
},
"scripts": {
"build": "tsc --build",
"typecheck": "tsc --noEmit",
"lint": "biome check src",
"format": "prettier --write \"**/*.{js,ts,json,mjs,yml}\"",
"audit": "pnpm audit --audit-level=high",
"test": "vitest run",
"debug": "tsx src/app.mts",
"start": "node dist/src/app.mjs"
}
}