datahaven/test/package.json
Tim B 7ac340e465
ci: 🪓 Cutting BS (#43)
Due to our constrained CI resources available to us, this PR disables
`blockscout` from running in the CI.

This PR makes it so `minimal` runs don't use blockscout, and changes the
CI to use this instead of the verified network.
2025-04-15 20:06:17 +01:00

35 lines
1 KiB
JSON

{
"name": "@datahaven/e2e-test",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"fmt": "biome check .",
"fmt:fix": "biome check --write .",
"start:e2e:verified": "bun run scripts/e2e-cli.ts --verified --blockscout",
"start:e2e:minimal": "bun run scripts/e2e-cli.ts",
"stop:e2e": "kurtosis enclave stop datahaven-ethereum && kurtosis clean && kurtosis engine stop && docker container prune -f",
"stop:e2e:verified": "bun stop:e2e",
"stop:e2e:minimal": "bun stop:e2e",
"stop:kurtosis-engine": "kurtosis engine stop && docker container prune -f",
"test:e2e": "bun test suites/e2e"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@dotenvx/dotenvx": "^1.39.0",
"@types/dockerode": "^3.3.37",
"chalk": "^5.4.1",
"dockerode": "^4.0.5",
"dotenv": "^16.4.7",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"tiny-invariant": "^1.3.3",
"viem": "^2.25.0"
}
}