-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.21 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
{
"name": "nivik",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.34.5",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "pnpm -r --parallel --filter \"./apps/**\" dev",
"dev:web": "pnpm --filter @nivik/web dev",
"dev:agent": "pnpm --filter @nivik/agent-runtime dev",
"build": "pnpm -r --filter \"./apps/**\" --filter \"./packages/**\" build",
"start": "pnpm -r --parallel --filter \"./apps/**\" start",
"typecheck": "pnpm -r typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"deps": "depcruise apps packages --config .dependency-cruiser.cjs",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"hint:glyphs": "node scripts/hint-glyphs.mjs",
"prepare": "node .githooks/install.mjs",
"hooks:install": "node .githooks/install.mjs",
"hooks:check": "node .githooks/lib/run.mjs pre-commit"
},
"devDependencies": {
"@biomejs/biome": "2.5.12",
"@playwright/test": "1.63.0",
"dependency-cruiser": "18.2.0",
"fontkit": "^2.0.4",
"happy-dom": "^20.14.0",
"jiti": "^2.7.0",
"typescript": "5.9.3",
"vitest": "5.0.0"
}
}