-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
75 lines (75 loc) · 2.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@pooltogether/aave-yield-source",
"version": "1.2.1",
"description": "PoolTogether Aave Yield Source",
"main": "index.js",
"license": "GPL-3.0",
"scripts": {
"clean": "rm -rf cache/ artifacts/",
"compile": "hardhat --show-stack-traces --max-memory 8192 compile",
"coverage": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat coverage",
"deploy": "hardhat deploy --write true --network",
"etherscan-verify": "hardhat etherscan:verify --network",
"format": "prettier --config .prettierrc --write **/*.ts",
"format:file": "prettier --config .prettierrc --write",
"hint": "solhint \"contracts/**/*.sol\"",
"start-fork": "FORK_ENABLED=true hardhat node --no-reset --no-deploy",
"impersonate-accounts": "hardhat --network localhost fork:impersonate-accounts ",
"distribute-ether": "hardhat --network localhost fork:distribute-ether-from-binance",
"create-prize-pool": "hardhat --network localhost fork:create-aave-prize-pool",
"deploy-fork": "FORK_ENABLED=true; rm -rf deployments/localhost && yarn deploy localhost",
"run-fork": "FORK_ENABLED=true; yarn impersonate-accounts && yarn distribute-ether && yarn create-prize-pool",
"test": "yarn clean && hardhat test",
"typechain": "typechain --target=ethers-v5 \"./abis/*.json\" --out-dir \"./types\"",
"verify": "hardhat etherscan-verify --license GPL-3.0 --solc-input --network",
"integration-test-mumbai": "yarn deploy mumbai && hardhat run --network mumbai ./scripts/createAndRunPrizePoolMumbai.ts ",
"prepack": "rm -rf build cache && yarn compile",
"postpublish": "PACKAGE_VERSION=$(./scripts/package-version.sh) && git tag -ae v$PACKAGE_VERSION && git push --tags"
},
"dependencies": {
"@openzeppelin/contracts": "4.3.2",
"@pooltogether/fixed-point": "1.0.0",
"@pooltogether/owner-manager-contracts": "1.1.0",
"@pooltogether/yield-source-interface": "1.3.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "2.1.1",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/hardhat-upgrades": "1.6.0",
"@studydefi/money-legos": "2.4.1",
"@typechain/ethers-v5": "7.0.1",
"@typechain/hardhat": "2.3.0",
"@types/chai": "4.2.15",
"@types/debug": "4.1.5",
"@types/mocha": "8.2.1",
"@types/node": "14.14.32",
"chai": "4.3.4",
"chalk": "4.1.0",
"debug": "4.3.1",
"ethereum-waffle": "3.3.0",
"ethers": "5.4.6",
"evm-chains": "0.2.0",
"hardhat": "2.1.1",
"hardhat-abi-exporter": "2.1.2",
"hardhat-dependency-compiler": "1.1.1",
"hardhat-deploy": "0.9.0",
"hardhat-deploy-ethers": "0.3.0-beta.7",
"hardhat-gas-reporter": "1.0.4",
"prettier": "2.2.1",
"solhint": "3.3.3",
"solidity-coverage": "0.7.17",
"ts-generator": "0.1.1",
"ts-node": "9.1.1",
"typechain": "5.1.2",
"typescript": "4.2.3"
},
"files": [
"LICENSE",
"abis/**",
"aave/",
"artifacts/**",
"contracts/**",
"types/**"
]
}