-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
{
"name": "hardhat-typescript-template",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"docgen": "npx hardhat docgen",
"test": "npx hardhat test",
"coverage": "npm run build && npx hardhat coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vrde/hardhat-typescript-template.git"
},
"author": "vrde",
"license": "MIT",
"bugs": {
"url": "https://github.com/vrde/hardhat-typescript-template/issues"
},
"homepage": "https://github.com/hardhat-typescript-template/contracts#readme",
"devDependencies": {
"@ethersproject/providers": "^5.7.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@typechain/truffle-v5": "^8.0.2",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.8.0",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "^2.14.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"pretty-quick": "^3.1.3",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "0.6.0-beta.35",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.3"
}
}