-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 1.03 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
{
"name": "pinception",
"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"
},
"dependencies": {
"dotenv": "^10.0.0",
"ethers": "^6.13.2"
},
"devDependencies": {
"@types/node": "^20.12.12",
"typescript": "^5.4.5"
}
}