-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.26 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
{
"scripts": {
"contract-size": "npx hardhat size-contracts",
"linter:check": "./node_modules/.bin/solhint -f table contracts/**/*.sol; ./node_modules/.bin/solhint -f table contracts/**/**/*.sol;",
"linter:format": "prettier --config ./prettierrc.js --write **.sol"
},
"eslintConfig": {
"globals": {
"usePlugin": true
}
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.3.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethers": "^5.4.0",
"hardhat": "^2.6.5",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.16"
}
}