|
10 | 10 | "biome:check": "biome check .", |
11 | 11 | "biome:write": "biome check --write . && bun run biome:write:imports", |
12 | 12 | "biome:write:imports": "biome lint --write --only correctness/noUnusedImports .", |
13 | | - "chain": "bun hardhat node --no-deploy --export-all ./generated/chain.json --network hardhat", |
| 13 | + "chain": "hardhat node --no-deploy --export-all ./generated/chain.json --network hardhat", |
14 | 14 | "clean": "shx rm -rf ./artifacts ./cache ./cache_hardhat ./coverage ./coverage.json ./types && bun typechain", |
15 | | - "compile": "cross-env TS_NODE_TRANSPILE_ONLY=true bun hardhat compile", |
16 | | - "coverage": "bun hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/**/*.ts\" && bun typechain", |
17 | | - "deploy:hardhat-deploy": "bun hardhat deploy --export-all ./deployments/hardhat_contracts.json", |
| 15 | + "compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile", |
| 16 | + "coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/**/*.ts\" && bun typechain", |
| 17 | + "deploy:hardhat-deploy": "hardhat deploy --export-all ./deployments/hardhat_contracts.json", |
18 | 18 | "deploy": "bun deploy:hardhat-deploy --network hardhat", |
19 | 19 | "deploy:network": "bun deploy:hardhat-deploy --network", |
20 | | - "fork": "bun hardhat node --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad", |
| 20 | + "fork": "hardhat node --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad", |
21 | 21 | "lint": "bun lint:sol && bun lint:ts && bun prettier:check", |
22 | 22 | "lint:sol": "forge fmt --check && bun solhint \"{script,contracts,test}/**/*.sol\"", |
23 | 23 | "lint:ts": "bun run biome:check", |
24 | | - "networks": "bun hardhat networks", |
| 24 | + "networks": "hardhat networks", |
25 | 25 | "postinstall": "DOTENV_CONFIG_PATH=./.env.example bun typechain", |
26 | 26 | "prettier:write": "prettier --cache --write \"**/*.{md,yml}\"", |
27 | 27 | "prettier:check": "prettier --cache --check \"**/*.{md,yml}\"", |
28 | | - "test": "bun hardhat test", |
29 | | - "test:gas": "REPORT_GAS=true CONTRACT_SIZER=true bun hardhat test", |
30 | | - "typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true bun hardhat typechain", |
31 | | - "verify": "bun hardhat run scripts/verify.ts --network" |
| 28 | + "test:gas": "REPORT_GAS=true CONTRACT_SIZER=true hardhat test", |
| 29 | + "typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain", |
| 30 | + "verify": "hardhat run scripts/verify.ts --network" |
32 | 31 | }, |
33 | 32 | "devDependencies": { |
34 | 33 | "@biomejs/biome": "2.2.5", |
|
0 commit comments