generated from pooltogether/pooltogether-contracts-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 3.36 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
76
77
78
79
{
"name": "@pooltogether/v4-periphery",
"version": "1.4.0",
"description": "PoolTogether V4 Periphery",
"main": "index.js",
"license": "GPL-3.0",
"scripts": {
"clean": "rm -rf cache/ artifacts/ types/",
"compile": "mkdir -p abis && hardhat --show-stack-traces --max-memory 8192 compile",
"coverage": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat coverage",
"coverage:file": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat coverage --testfiles",
"deploy": "hardhat deploy --write true --network",
"docs": "solidity-docgen --solc-module solc -i contracts -o docs -t templates",
"verify": "hardhat etherscan-verify --license MIT --solc-input --network",
"etherscan-verify": "hardhat etherscan:verify --network",
"etherscan-verify-polygon": "hardhat --config hardhat.config.polygon.js run ./scripts/verify.js --network",
"format": "prettier --config .prettierrc --write \"**/*.{ts,js}\" \"contracts/**/*.sol\"",
"format:file": "prettier --config .prettierrc --write",
"hint": "solhint \"contracts/**/*.sol\"",
"start-fork": "FORK_ENABLED=true hardhat node --no-reset --no-deploy",
"impersonate": "hardhat --network localhost fork:impersonate ",
"distribute": "hardhat --network localhost fork:distribute",
"remove-logs": "yarn run hardhat remove-logs",
"twab-rewards-fork": "wait-on tcp:8545 && yarn impersonate && yarn distribute && hardhat --network localhost fork:twab-rewards",
"run-twab-rewards-fork": "OPTIMIZER_DISABLED=true rm -rf deployments/localhost/ && npm-run-all -p -r start-fork twab-rewards-fork",
"test": "HIDE_DEPLOY_LOG=true OPTIMIZER_DISABLED=true hardhat test",
"prepack": "yarn compile"
},
"peerDependencies": {
"@openzeppelin/contracts": "4.7.3",
"@pooltogether/v4-core": "1.3.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.2.0",
"@nomiclabs/hardhat-etherscan": "3.1.1",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/contracts": "4.7.3",
"@pooltogether/aave-yield-source": "1.2.1",
"@pooltogether/v4-core": "1.3.0",
"@studydefi/money-legos": "2.4.2",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "6.1.3",
"@types/chai": "4.3.3",
"@types/debug": "4.1.7",
"@types/mocha": "10.0.0",
"@types/node": "18.11.4",
"chai": "4.3.6",
"chalk": "4.1.2",
"debug": "4.3.4",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.2",
"hardhat": "2.12.0",
"hardhat-abi-exporter": "2.10.1",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.18",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-gas-reporter": "1.0.9",
"hardhat-log-remover": "2.0.2",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-beta.24",
"solc": "0.8.17",
"solhint": "3.3.7",
"solidity-coverage": "0.8.2",
"solidity-docgen": "0.5.17",
"ts-generator": "0.1.1",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "4.8.4",
"wait-on": "6.0.1"
},
"files": [
"LICENSE",
"abis/**",
"artifacts/**",
"contracts/**",
"types/**"
]
}