forked from yieldyak/governance-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.92 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
35
36
37
38
39
40
41
42
{
"name": "yak-staking",
"version": "1.0.0",
"description": "Token and staking smart contracts for Yield Yak",
"license": "MIT",
"scripts": {
"hardhat": "npx hardhat node --no-deploy --show-accounts",
"fork": "export HARDHAT_NETWORK='hardhat' && npx hardhat node --no-deploy --show-accounts --fork $FORK_URL --fork-block-number $FORK_BLOCK_NUMBER",
"test": "npx hardhat test",
"test:spec": "sh -c 'npx hardhat test ./test/spec/${0}.spec.js'",
"deploy": "npx hardhat deploy",
"deploy:reset": "npx hardhat deploy --reset",
"deploy:tag": "sh -c 'npx hardhat deploy --tags ${0}'",
"deploy:hardhat": "npx hardhat deploy --network hardhat",
"deploy:hardhat:tag": "sh -c 'npx hardhat deploy --network hardhat --tags ${0}'",
"deploy:fuji": "npx hardhat deploy --network fuji",
"deploy:fuji:reset": "npx hardhat deploy --network fuji --reset",
"deploy:fuji:tag": "sh -c 'npx hardhat deploy --network fuji --tags ${0}'",
"deploy:fuji:tag:reset": "sh -c 'npx hardhat deploy --network fuji --tags ${0} --reset'",
"deploy:prod": "npx hardhat deploy --network mainnet",
"deploy:prod:reset": "npx hardhat deploy --network mainnet --reset",
"deploy:prod:tag": "sh -c 'npx hardhat deploy --network mainnet --tags ${0}'",
"deploy:prod:tag:reset": "sh -c 'npx hardhat deploy --network mainnet --tags ${0} --reset'",
"flatten:out": "mkdir -p flatten && npx hardhat flatten > ./flatten/Contract.sol"
},
"dependencies": {},
"devDependencies": {
"ethers": "^5.0.19",
"ethereum-waffle": "^3.1.2",
"ethereumjs-util": "^7.0.7",
"hardhat": "^2.0.1",
"hardhat-deploy": "^0.7.0-beta.13",
"hardhat-deploy-ethers": "^0.3.0-beta.5",
"hardhat-gas-reporter": "^1.0.0",
"hardhat-abi-exporter": "^2.0.5",
"hardhat-log-remover": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"mocha": "^8.2.0",
"chai": "^4.2.0"
}
}