-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
69 lines (69 loc) · 2.28 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
{
"dependencies": {
"@boringcrypto/boring-solidity": "github:boringcrypto/BoringSolidity",
"chalk": "^4.1.0",
"inquirer": "^7.3.3",
"node-fetch": "^2.6.1",
"ora": "^5.1.0"
},
"scripts": {
"flatten": "npx sol-merger \"./src/**/*.sol\" ./build",
"dill:node": "npx hardhat node",
"dill:init": "npx hardhat run ./hardhat-scripts/dill-test/1.initialize.js --network localhost",
"dill:distribute": "npx hardhat run ./hardhat-scripts/dill-test/2.vote-and-distribute.js --network localhost",
"dill:fees": "npx hardhat run ./hardhat-scripts/dill-test/4.fee-sharing.js --network localhost",
"dill:wait": "npx hardhat run ./hardhat-scripts/dill-test/3.wait.js --network localhost"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/hardware-wallets": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-vyper": "^3.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/contracts-upgradeable": "^3.4.1",
"@openzeppelin/test-helpers": "^0.5.10",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.2",
"bn.js": "^5.2.1",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"ethers": "^5.1.3",
"hardhat": "npm:@gzeoneth/hardhat@2.10.2-gzeon-e972f1dda",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.11.12",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-preprocessor": "^0.1.4",
"mocha": "^9.0.2",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.9",
"solidity-coverage": "^0.7.16",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4",
"web3": "^1.7.4"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true
},
"rules": {
"semi": "error"
}
}
}