generated from djh58/hardhat-deploy-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.53 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
{
"name": "hardhat-deploy-ts-template",
"version": "1.0.0",
"description": "Template to develop EVM smart contracts with Hardhat and Typescript for testing ",
"main": "index.js",
"repository": "git@github.com:djh58/hardhat-deploy-ts-template.git",
"author": "Dan Hepworth <danhep@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "npx prettier '**/*.{json,sol,md}' --write",
"clean:contracts": "npx hardhat clean",
"compile": "npx hardhat compile",
"build": "yarn lint && yarn clean:contracts && yarn compile",
"test": "npx hardhat test",
"size": "npx hardhat size-contracts"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.11",
"@openzeppelin/contracts": "^4.3.2",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-ethers": "^0.0.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.6.8",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.9.8",
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"hardhat-gas-reporter": "^1.0.7",
"hardhat-typechain": "^0.3.5",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.4.4"
}
}