-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
30 lines (30 loc) · 1.25 KB
/
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
26
27
28
29
30
{
"name": "hello-world-avs",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start:operator": "ts-node operator/index.ts",
"start:traffic": "ts-node operator/createNewTasks.ts",
"start:anvil": "anvil",
"deploy:core": "cd contracts && forge script script/DeployEigenLayerCore.s.sol --rpc-url http://localhost:8545 --broadcast",
"deploy:hello-world": "cd contracts && forge script script/HelloWorldDeployer.s.sol --rpc-url http://localhost:8545 --broadcast",
"deploy:core-debug": "cd contracts && forge script script/DeployEigenLayerCore.s.sol --rpc-url http://localhost:8545 --broadcast --revert-strings debug",
"deploy:hello-world-debug": "cd contracts && forge script script/HelloWorldDeployer.s.sol --rpc-url http://localhost:8545 --broadcast --revert-strings debug",
"build": "cd contracts && forge build",
"extract:abis": "node utils/abis.js",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest"
},
"dependencies": {
"dotenv": "^10.0.0",
"ethers": "^6.13.2"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.12.12",
"@viem/anvil": "^0.0.10",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}