forked from ChainSafe/lodestar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.61 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "root",
"private": true,
"engines": {
"node": "^22.22.0 || ^24.13.0"
},
"packageManager": "pnpm@10.24.0",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rm -rf ./packages/*/lib ./packages/*/*.tsbuildinfo",
"clean:nm": "rm -rf ./packages/*/node_modules ./node_modules",
"build": "pnpm -r build",
"build:bundle": "pnpm -r build:bundle",
"build:watch": "pnpm -r --parallel exec pnpm run build:watch",
"build:ifchanged": "pnpm -r exec -- ../../scripts/build_if_changed.sh",
"lint": "biome check",
"lint:fix": "pnpm lint --write",
"lint-dashboards": "node scripts/lint-grafana-dashboards.mjs ./dashboards",
"check-build": "pnpm -r check-build",
"check-bundle": "pnpm -r check-bundle",
"check-readme": "pnpm -r check-readme",
"check-types": "pnpm -r check-types",
"check-spelling": "pyspelling -c .pyspelling.yml -v",
"docs:build": "pnpm -r check-readme && pnpm -r docs:build && ./scripts/prepare-docs.sh",
"docs:serve": "pnpm --cwd docs install && pnpm --cwd docs start",
"docs:lint": "prettier '**/*.md' --check",
"docs:lint:fix": "prettier '**/*.md' --write",
"test": "pnpm -r --workspace-concurrency=1 run test",
"test:unit": "vitest run --project unit --project unit-minimal",
"test:browsers": "vitest run --project browser",
"test:e2e": "vitest run --project e2e --project e2e-mainnet",
"download-spec-tests": "pnpm -r download-spec-tests",
"test:spec": "vitest run --project spec-minimal --project spec-mainnet",
"benchmark": "pnpm benchmark:files 'packages/*/test/perf/**/*.test.ts'",
"benchmark:files": "NODE_OPTIONS='--max-old-space-size=4096 --loader=ts-node/esm' benchmark --config .benchrc.yaml --defaultBranch unstable",
"release:create-rc": "node scripts/release/create_rc.mjs",
"release:tag-rc": "node scripts/release/tag_rc.mjs",
"release:tag-stable": "node scripts/release/tag_stable.mjs",
"release:publish": "lerna publish from-package --yes --no-verify-access"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@biomejs/biome": "^2.2.0",
"@chainsafe/benchmark": "^1.2.3",
"@chainsafe/biomejs-config": "^1.0.0",
"@lerna-lite/cli": "^4.9.4",
"@lerna-lite/exec": "^4.9.4",
"@lerna-lite/publish": "^4.9.4",
"@lerna-lite/run": "^4.9.4",
"@lerna-lite/version": "^4.9.4",
"@lodestar/params": "workspace:",
"@types/node": "^24.10.1",
"@types/react": "^19.1.12",
"@vitest/browser": "catalog:",
"@vitest/browser-playwright": "catalog:",
"@vitest/coverage-v8": "catalog:",
"axios": "^1.13.2",
"bun-types": "^1.2.21",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.4.5",
"electron": "^26.2.2",
"https-browserify": "^1.0.0",
"inquirer": "^9.1.5",
"jsdom": "^23.0.1",
"libp2p": "2.9.0",
"node-gyp": "^9.4.0",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"playwright": "^1.56.1",
"prettier": "^3.2.5",
"pretty-format": "^29.7.0",
"process": "^0.11.10",
"rollup-plugin-visualizer": "^5.12.0",
"semver": "^7.7.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-top-level-await": "^1.6.0",
"vitest": "catalog:",
"vitest-when": "^0.9.0",
"wait-port": "^1.1.0"
},
"dependencies": {
"@chainsafe/lodestar": "workspace:*",
"debug": "^4.4.3"
},
"resolutions": {
"dns-over-http-resolver": "^2.1.1",
"loupe": "^2.3.6",
"elliptic": ">=6.6.1"
}
}