-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
58 lines (58 loc) · 2.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "metavault",
"version": "3.0.0",
"license": "MIT",
"description": "MetaVault Contracts and ABI",
"scripts": {
"compile": "hardhat compile",
"coverage": "hardhat coverage --testfiles 'test/v3/*.js'",
"deploy:v3:kovan": "hardhat deploy --network kovan --tags v3,v3-strategies --gasprice 1000000000",
"deploy:merkledrop:kovan": "hardhat deploy --network kovan --tags merkledrop --gasprice 1000000000",
"deploy:merkledrop:mainnet": "hardhat deploy --network mainnet --tags merkledrop",
"deploy:token:kovan": "hardhat deploy --network kovan --tags token --gasprice 1000000000",
"deploy:v3:mainnet": "LIVE=true hardhat deploy --network mainnet --tags v3",
"fork": "LIVE=true FORK=true hardhat node --no-deploy --fork https://mainnet.infura.io/v3/$INFURA_PROJECT_ID",
"lint": "eslint . && solhint contracts/**/*.sol",
"lint:contracts": "solhint contracts/**/*.sol",
"lint:fix": "eslint . --fix",
"lint:js": "eslint.",
"test": "./run_tests.sh",
"test:v3": "hardhat test test/v3/*",
"test:live": "VERBOSE=true LIVE=true hardhat test test/live/*",
"test:governance": "hardhat --show-stack-traces test test/governance/*",
"test:token": "hardhat --show-stack-traces test test/token/*",
"verify:kovan": "hardhat --network kovan etherscan-verify --api-key $ETHERSCAN_API_KEY",
"verify:mainnet": "hardhat --network mainnet etherscan-verify --api-key $ETHERSCAN_API_KEY"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yaxis-project/metavault"
},
"bugs": {
"url": "https://github.com/yaxis-project/metavault/issues"
},
"homepage": "https://github.com/yaxis-project/metavault#readme",
"dependencies": {
"@openzeppelin/contracts": "^3.1.0",
"dotenv": "^10.0.0",
"web3": "^1.6.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-vyper": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"chai": "^4.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.24",
"hardhat": "^2.8.3",
"hardhat-deploy": "^0.9.28",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"prettier": "^2.2.1",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.18"
}
}