-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.36 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
{
"name": "enoki",
"private": true,
"description": "Self-hosted Host monitoring with a Hono Hub, Vue Web UI, and Rust Probe.",
"type": "module",
"scripts": {
"boundaries": "node scripts/check-boundaries.ts",
"build": "turbo run build --output-logs=errors-only --log-order=grouped",
"check": "pnpm run check:node && pnpm run rust:check",
"check:terminology": "node scripts/check-terminology.mjs",
"check:node": "turbo run boundaries format:check lint typecheck build test test:e2e check:generated --continue=dependencies-successful --output-logs=errors-only --log-order=grouped --log-prefix=task",
"db:reset-migrations": "pnpm --filter @enoki/hub run db:reset-migrations",
"dev": "pnpm --filter @enoki/web dev",
"dev:hub": "pnpm --filter @enoki/hub build && NODE_ENV=development pnpm --filter @enoki/hub start",
"dev:probe": "node scripts/dev-probe.mjs",
"fix": "turbo run lint:fix format:write --continue=dependencies-successful --output-logs=full --log-order=grouped --log-prefix=task",
"format:check": "node scripts/run-root-owned-task.ts format:check",
"format:write": "node scripts/run-root-owned-task.ts format:write",
"lint": "node scripts/run-root-owned-task.ts lint",
"lint:fix": "node scripts/run-root-owned-task.ts lint:fix",
"proto:check": "pnpm run check:generated",
"check:generated": "pnpm --filter @enoki/proto check",
"rust:check": "cargo fmt --all --check && cargo clippy --workspace --all-targets -- -D warnings && cargo test --workspace",
"test": "vitest run scripts/*.test.mjs --reporter=agent --silent=passed-only",
"test:hub-container-logging": "node apps/hub/scripts/hub-container-logging-evidence.mjs",
"test:e2e": "playwright test",
"test:e2e:candidate": "node scripts/release-ui-contract.mjs",
"e2e": "pnpm run test:e2e",
"typecheck": "tsc -p tsconfig.json --noEmit --pretty false"
},
"dependencies": {
"@enoki/probe-release": "workspace:*"
},
"devDependencies": {
"@playwright/test": "catalog:",
"@types/node": "catalog:",
"eslint-plugin-better-tailwindcss": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": "24"
},
"packageManager": "pnpm@11.11.0",
"turbo": {
"tags": [
"app"
]
}
}