-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
23 lines (23 loc) · 994 Bytes
/
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
{
"scripts": {
"test": "hardhat test",
"format": "prettier --write contracts/**/*.sol *.js *.json test/**/*.js",
"pretty-quick": "pretty-quick",
"coverage": "hardhat coverage",
"flatten": "hardhat flatten .\\contracts\\DictatorDAO.sol > .\\contracts\\DictatorDAOFlat.sol",
"flat": "hardhat flat .\\contracts\\DictatorDAO.sol --output .\\contracts\\DictatorDAOFlat.sol",
"ts": "yarn run typechain --target ethers-v5 \"artifacts/contracts/DictatorDAOFlat.sol/Dictator?(DAO|Deployer|Token).json\""
},
"dependencies": {
"@boringcrypto/boring-solidity": "boringcrypto/BoringSolidity",
"@boringcrypto/hardhat-framework": "boringcrypto/hardhat-framework"
},
"devDependencies": {
"@typechain/ethers-v4": "^4.0.0",
"@typechain/ethers-v5": "^6.0.5",
"ethers": "^5.1.4",
"typechain": "^4.0.3",
"typechain-target-ethers-v5": "^5.0.1",
"typescript": "^4.2.4"
}
}