-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 KB
/
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
36
37
38
39
40
41
42
43
44
45
{
"name": "loki-reverse-proxy",
"version": "1.0.0",
"description": "Reverse proxy for Loki with proper Grafana API authentication",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node --env-file=.env ./dist/index.js",
"lint": "eslint src test",
"build": "tsc",
"test": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"coverage": "c8 -r html npm test"
},
"keywords": [
"loki",
"grafana",
"proxy",
"reverse",
"reverse-proxy",
"api"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"dependencies": {
"@fastify/http-proxy": "^10.0.0",
"@openally/timestore": "^1.5.1",
"fastify": "^5.0.0",
"pino": "^9.4.0",
"pino-loki": "^2.2.1",
"pino-pretty": "^11.0.0",
"ua-parser-js": "^1.0.37",
"undici": "^6.10.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@openally/config.eslint": "^1.0.0",
"@openally/config.typescript": "^1.0.3",
"@types/node": "^22.5.4",
"@types/ua-parser-js": "^0.7.39",
"c8": "^10.1.2",
"glob": "^11.0.0",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
}
}