-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 1.34 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
{
"name": "hardhat-project",
"scripts": {
"deploy": "npx hardhat run scripts/deploy.js --network mainnet",
"deploy-local": "npx hardhat run scripts/deploy.js --network localhost",
"deploy-rinkeby": "npx hardhat run scripts/deployTest.js --network rinkeby",
"verify-rinkeby": "npx hardhat verify --constructor-args arguments.js --network rinkeby",
"verify": "npx hardhat verify --constructor-args arguments.js --network mainnet",
"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.4",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"hardhat": "^2.8.3",
"hardhat-contract-sizer": "^2.5.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0"
}
}