generated from yuichiroaoki/typescript-hardhat
-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
47
48
49
50
{
"name": "typescript-hardhat",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/yuichiroaoki/typescript-hardhat",
"author": "yuichiroaoki",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"account": "npx hardhat accounts",
"balance": "npx hardhat balance --account",
"liquidations": "npx hardhat run scripts/liquidations.ts",
"block-number": "npx hardhat block-number",
"deploy": "npx hardhat run scripts/deploy.ts",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"postinstall": "husky install"
},
"private": true,
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.2.0",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@openzeppelin/hardhat-upgrades": "^1.10.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.1.2",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"axios": "^0.25.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.8.3",
"husky": "^7.0.4",
"lint-staged": "^12.2.2",
"prettier": "2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^5.1.1",
"typescript": "^4.5.5"
},
"packageManager": "[email protected]"
}