-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.29 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.29 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
{
"name": "volt-monorepo",
"private": true,
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">= 20"
},
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint && pnpm check:loc",
"test": "turbo run test",
"test:rust": "cargo test --workspace",
"test:benchmarks": "node scripts/ci/volt-benchmarks.mjs",
"test:benchmarks:release": "node scripts/ci/volt-benchmarks.mjs --release",
"test:benchmarks:sweep": "node scripts/ci/volt-benchmarks.mjs --sweep",
"test:benchmarks:sweep:release": "node scripts/ci/volt-benchmarks.mjs --sweep --release",
"test:plugin-startup-bench": "node scripts/ci/plugin-startup-bench.mjs",
"test:soak": "node scripts/soak/nightly-soak.mjs",
"test:contract-compat": "node scripts/contracts/check-compatibility.mjs",
"check:loc": "node scripts/ci/loc-guard.mjs",
"docs:architecture": "node scripts/docs/generate-architecture-inventory.mjs",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean"
},
"devDependencies": {
"@voltkit/volt-test": "workspace:*",
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"eslint-plugin-import-x": "^4.16.1",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"turbo": "^2.8.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}