-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.64 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
{
"name": "akropolis-delphi-yearn",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/akropolisio/delphi-yearn.git",
"author": "Pavel Rubin <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "brownie compile --all",
"clone-packages": "sh ./security/clone-packages.sh",
"deploy:rinkebyV1": "brownie run deploy_vault_savingsV1.py --network rinkeby",
"deploy:devV1": "brownie run deploy_vault_savingsV1.py",
"deploy:rinkebyV2": "brownie run deploy_vault_savingsV2.py --network rinkeby",
"deploy:devV2": "brownie run deploy_vault_savingsV2.py",
"ganache": "npx ganache-cli --gasLimit 0xfffffffffff -e 100000000 --port 8545",
"generate-abi": "npx truffle-abi -o ./abi",
"generate-artifacts": "npm run compile && npm run generate-abi",
"install": "pip3 install -r requirements-dev.txt",
"postinstall": "npm run clone-packages && npm run generate-artifacts && npx husky install",
"sec:flatten": "sh ./security/flattener-run.sh",
"sec:slither": "sh ./security/slither/slither-run.sh",
"sec:flatten-echidna": "sh ./security/flattener-run.sh echidna",
"sec:load-echidna": "sh ./security/echidna/echidna-download.sh",
"sec:echidna": "sh ./security/echidna/echidna-run.sh",
"test": "brownie test",
"test:add-fork": "brownie networks add Ethereum mainnet-test host=$ALCHEMY_ARCHIVE_NODE chainid=1 explorer=https://api.etherscan.io/api",
"test:swap-mainnet": "brownie test tests-mainnet/test_vakro_mainnet_fork.py --network mainnet-fork",
"format:fix": "npx prettier --write \"contracts/**/*.sol\" && npx prettier --write \"interfaces/**/*.sol\"",
"format:lint": "npx prettier --check \"contracts/**/*.sol\" && npx prettier --check \"interfaces/**/*.sol\"",
"format:test:lint": "black --check tests",
"format:test:fix": "black . tests",
"husky:hooks:install": "sh ./scripts/husky.sh",
"lint:check": "npx solhint contracts/**/*.sol interfaces/**/*.sol"
},
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"dotenv": "^8.2.0",
"solc": "^0.6.12",
"truffle-assertions": "^0.9.2",
"truffle-contract-size": "^2.0.1"
},
"devDependencies": {
"@openzeppelin/contracts": "^3.3.0",
"@openzeppelin/contracts-upgradeable": "^3.3.0",
"@truffle/hdwallet-provider": "^1.0.38",
"ganache-cli": "^6.12.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.9",
"solhint": "^3.3.4",
"truffle": "^5.1.34"
}
}