-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.63 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
{
"name": "defihelper-protocol-upgradable",
"version": "1.0.0",
"description": "",
"author": "defihelper",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/defi-helper/defihelper-protocol-upgradable.git"
},
"bugs": {
"url": "https://github.com/defi-helper/defihelper-protocol-upgradable/issues"
},
"homepage": "https://github.com/defi-helper/defihelper-protocol-upgradable#readme",
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write 'contracts/**/*.sol'",
"docs": "solidity-docgen --solc-module solc-0.8 -i ./contracts -o ./docs/api -t ./docs/templates",
"etherscan-verify": "hardhat etherscan-verify",
"export-abi": "hardhat export-abi --dir ./networks/abi",
"export-deploy": "hardhat export-deployed --file ./networks/contracts.json --fields address,blockNumber"
},
"dependencies": {
"@chainlink/contracts": "^0.4.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.7.0",
"@openzeppelin/contracts-upgradeable": "^4.7.0",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"bignumber.js": "^9.0.2",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"hardhat": "^2.4.3",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solc": "^0.8.6",
"solc-0.8": "npm:solc@^0.8.6",
"solhint": "^3.3.6",
"solidity-docgen": "^0.5.13",
"tiny-glob": "^0.2.9",
"truffle-assertions": "^0.9.2"
}
}