-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.92 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.92 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
48
49
50
51
52
53
54
55
{
"name": "@data-fair/metrics",
"version": "2.3.0",
"description": "A service to help monitoring HTTP requests in the data-fair stack.",
"type": "module",
"scripts": {
"test": "NODE_ENV=test node --test-force-exit --test-concurrency=1 --test --test-reporter=spec test-it/*.ts",
"test-only": "NODE_ENV=test node --test-force-exit --test-only --test-concurrency=1 --test test-it/*.ts",
"lint": "eslint . && npm -w ui run lint",
"lint-fix": "eslint --fix . && npm -w ui run lint-fix",
"check-types": "tsc",
"dev-deps": "docker compose up -d --wait",
"stop-dev-deps": "docker compose stop",
"dev-ui": "npm -w ui run dev",
"dev-api": "npm -w api run dev",
"dev-daemon": "npm -w daemon run dev",
"dev-zellij": "export DEV_SHELL=$(basename \"$SHELL\") && zellij --layout .zellij.kdl && rm data/zellij-deps-ready",
"build-types": "df-build-types ./",
"prepare": "husky || true",
"quality": "npm run dev-deps && npm run lint && npm run build-types && npm run check-types && npm -w ui run build && npm run test && npm audit --omit=dev --audit-level=critical"
},
"imports": {
"#api/types": "./api/types/index.ts"
},
"author": "Alban Mouton <alban.mouton@koumoul.com>",
"license": "AGPL-3.0-only",
"workspaces": [
"api",
"ui",
"daemon"
],
"engines": {
"node": "v24"
},
"dependencies": {
"@data-fair/lib-node": "^2.12.1",
"@data-fair/lib-types-builder": "^1.11.6",
"tough-cookie": "^5.1.2"
},
"devDependencies": {
"commitlint": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@data-fair/lib-utils": "^1.10.1",
"@types/chart.js": "^2.9.41",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.6",
"@types/truncate-middle": "^1.0.4",
"eslint": "^9.35.0",
"eslint-plugin-vue": "^10.4.0",
"eslint-plugin-vuetify": "^2.7.2",
"husky": "^9.1.7",
"neostandard": "^0.12.2",
"typescript": "^5.8.3"
}
}