-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "runforge",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"scripts": {
"prepare": "husky",
"dev:dashboard": "pnpm --filter @runforge/dashboard dev",
"lint": "pnpm -r --if-present lint",
"test": "pnpm -r test && node --test \"scripts/**/*.test.mjs\"",
"test:daemon": "pnpm --filter @runforge/daemon test",
"test:dashboard": "pnpm --filter @runforge/dashboard test",
"test:scripts": "node --test \"scripts/**/*.test.mjs\"",
"check:workflows": "node scripts/check-ci-workflows.mjs",
"check:traceability": "node scripts/check-traceability-paths.mjs",
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"husky": "^9.1.7"
}
}