-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1005 Bytes
/
package.json
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
{
"name": "modia-frontend",
"url": "https://github.com/navikt/modia-frontend",
"license": "MIT",
"module": "index.ts",
"type": "module",
"scripts": {
"test": "NODE_EXTRA_CA_CERTS='./test/rootCA.pem' bun test",
"dev": "bun run --hot src/index.ts",
"lint:js": "biome lint",
"format-check": "biome format",
"lint": "biome check",
"fix": "biome lint --write",
"format": "biome format --write",
"lint:ci": "biome ci --reporter=github"
},
"dependencies": {
"@hono/prometheus": "^1.0.1",
"@navikt/oasis": "^3.7.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.55.1",
"@opentelemetry/sdk-node": "^0.57.0",
"@opentelemetry/sdk-trace-node": "^2.0.0",
"hono": "^4.7.5",
"prom-client": "^15.1.3",
"unleash-client": "^6.6.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"globals": "^16.0.0",
"typescript": "^5.8.2"
}
}