generated from ZeframLou/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "einstein",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"prettier": "npx prettier --write '**/*.js' 'contracts/**/*.sol' '**/*.json' '**/*.md'",
"prepare": "husky install"
},
"keywords": [],
"author": "Zefram Lou",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/hardhat": "^2.0.0",
"@typechain/truffle-v5": "^5.0.0",
"bignumber.js": "^9.0.0",
"hardhat": "^2.1.2",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.0-beta.58",
"hardhat-docgen": "^1.1.0",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-spdx-license-identifier": "^2.0.3",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^8.1.3",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solidity-coverage": "^0.7.16",
"typechain": "^5.0.0",
"web3": "^1.2.7"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0"
},
"lint-staged": {
"*.{js,sol,md,json}": "prettier --write"
}
}