forked from ensdomains/namechain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 809 Bytes
/
package.json
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
{
"name": "contracts",
"type": "module",
"scripts": {
"compile:hardhat": "NODE_OPTIONS='--experimental-loader ts-node/esm/transpile-only' hardhat compile",
"test:hardhat": "NODE_OPTIONS='--experimental-loader ts-node/esm/transpile-only' hardhat test",
"test:forge": "forge test",
"test": "bun run test:forge && bun run test:hardhat"
},
"devDependencies": {
"@ensdomains/hardhat-chai-matchers-viem": "^0.0.7",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@nomicfoundation/hardhat-viem": "^2.0.0",
"@types/bun": "latest",
"@vitest/expect": "^1.6.0",
"chai": "^5.1.1",
"hardhat": "^2.22.2",
"ts-node": "^10.9.2",
"viem": "^2.9.12"
},
"peerDependencies": {
"typescript": "^5.4.5"
}
}