|
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": "hardhat node --no-deploy --export-all ./generated/chain.json --network hardhat", |
| 13 | + "chain": "bun 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 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", |
| 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", |
18 | 18 | "deploy": "bun deploy:hardhat-deploy --network hardhat", |
19 | 19 | "deploy:network": "bun deploy:hardhat-deploy --network", |
20 | | - "fork": "hardhat node --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad", |
| 20 | + "fork": "bun 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": "hardhat networks", |
| 24 | + "networks": "bun 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": "hardhat test", |
29 | | - "test:gas": "REPORT_GAS=true CONTRACT_SIZER=true hardhat test", |
30 | | - "test:trace": "hardhat test --trace", |
31 | | - "test:fulltrace": "hardhat test --fulltrace", |
32 | | - "typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain", |
33 | | - "verify": "hardhat run scripts/verify.ts --network" |
| 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" |
34 | 32 | }, |
35 | 33 | "devDependencies": { |
36 | 34 | "@biomejs/biome": "2.2.5", |
37 | 35 | "@ethersproject/bignumber": "^5.8.0", |
38 | 36 | "@nomicfoundation/hardhat-chai-matchers": "^2.1.0", |
39 | 37 | "@nomicfoundation/hardhat-ethers": "^3.1.0", |
40 | | - "@nomicfoundation/hardhat-foundry": "^1.2.0", |
41 | 38 | "@nomicfoundation/hardhat-ignition": "^0.15.13", |
42 | 39 | "@nomicfoundation/hardhat-ignition-ethers": "^0.15.14", |
43 | 40 | "@nomicfoundation/hardhat-network-helpers": "^1.1.0", |
|
53 | 50 | "@types/mocha": "^10.0.10", |
54 | 51 | "@types/node": "^24.1.0", |
55 | 52 | "chai": "5.2.1", |
56 | | - "chalk": "4.1.2", |
57 | 53 | "cross-env": "^10.0.0", |
58 | 54 | "dotenv": "^17.2.1", |
59 | 55 | "ds-test": "github:dapphub/ds-test#e282159d5170298eb2455a6c05280ab5a73a4ef0", |
|
0 commit comments