-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.4 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
31
32
33
34
{
"name": "vea-lightbulb-tutorial",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"build": "yarn hardhat compile",
"lightbulb": "yarn build && yarn deploy && yarn verify && yarn ts-node",
"hit-switch": "yarn ts-node scripts/hit-switch.ts",
"lightbulb:chiado": "yarn build && yarn deploy:chiado && yarn verify:chiado",
"deploy": "yarn hardhat deploy --network goerli && yarn hardhat deploy --network arbitrumGoerli --tags switch-to-goerli",
"deploy:chiado": "yarn hardhat deploy --network chiado && yarn hardhat deploy --network arbitrumGoerli --tags switch-to-chiado",
"verify": "yarn hardhat etherscan-verify --network goerli && yarn hardhat etherscan-verify --network arbitrumGoerli",
"verify:chiado": "yarn hardhat etherscan-verify --network chiado --solc-input && yarn hardhat etherscan-verify --network arbitrumGoerli"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"ethers": "^5.7.2",
"hardhat": "^2.13.0",
"hardhat-deploy": "^0.11.25",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@kleros/vea-contracts": "^0.2.0",
"@typechain/ethers-v5": "^11.0.0",
"@typechain/hardhat": "^7.0.0",
"dotenv": "^8.2.0",
"ethereumjs-util": "^7.1.5",
"solidity-coverage": "^0.8.2",
"typechain": "^8.2.0"
}
}