mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
This PR adds a script one-liner to spin up an ethereum network, with attached explorers and deploys our `/contracts` folder into there. --------- Co-authored-by: Facundo Farall <37149322+ffarall@users.noreply.github.com>
29 lines
854 B
JSON
29 lines
854 B
JSON
{
|
|
"name": "@datahaven/e2e-test",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"fmt": "biome check .",
|
|
"fmt:fix": "biome check --write .",
|
|
"demo": "bun run scripts/placeholder.ts",
|
|
"start:e2e:minimal": "bun run scripts/start-kurtosis.ts",
|
|
"stop:e2e:minimal": "kurtosis enclave stop datahaven-ethereum && kurtosis clean && kurtosis engine stop && docker container prune -f",
|
|
"stop:kurtosis-engine": "kurtosis engine stop && docker container prune -f"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@dotenvx/dotenvx": "^1.39.0",
|
|
"@types/dockerode": "^3.3.37",
|
|
"dockerode": "^4.0.5",
|
|
"dotenv": "^16.4.7",
|
|
"tiny-invariant": "^1.3.3",
|
|
"viem": "^2.25.0"
|
|
}
|
|
}
|