-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "hardhat-project",
"scripts": {
"deploy": "npx hardhat run scripts/deploy.js --network mainnet",
"deploy-local": "npx hardhat run scripts/deploy.js --network localhost",
"test": "npx hardhat test",
"csize": "npx hardhat size-contracts",
"lint:sol": "yarn solhint --fix --max-warnings 5 \"contracts/**/*.sol\"",
"lint:js": "eslint --fix './{test,script}/**/*.{ts,js}' && prettier --write './{test,script,contracts}/**/*.{ts,js,sol}'",
"lint": "yarn lint:sol && yarn lint:js"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.40",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8",
"hardhat": "^2.9.7",
"hardhat-contract-sizer": "^2.5.1",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.6.0"
}
}