-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.02 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
60
61
62
63
64
65
66
67
{
"name": "ethereum-hardhat-template",
"version": "1.0.0",
"description": "ethereum hardhat template",
"main": "hardhat.config.ts",
"directories": {
"test": "test"
},
"scripts": {
"clean": "yarn hardhat clean",
"compile": "yarn hardhat compile",
"build": "yarn run clean && yarn run compile",
"deploy": "yarn hardhat run ./scripts/sample.ts",
"test": "yarn run build && yarn hardhat test",
"coverage": "yarn run build && yarn cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" hardhat coverage --temp artifacts --max-memory 4096"
},
"keywords": [
"solidity",
"ethereum",
"polygon",
"bsc",
"smart",
"contracts"
],
"author": "Beyonder Luu <[email protected]>",
"license": "MIT",
"homepage": "https://beyonderluu.com/",
"dependencies": {
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.8.3",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-string": "^1.4.2",
"@types/mocha": "^8.2.2",
"@types/node": "^17.0.12",
"axios": "^0.21.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.5.3",
"hardhat": "^2.8.3",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.9.28",
"hardhat-docgen": "^1.1.2",
"hardhat-etherscan-abi": "^0.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"hardhat-typechain": "^0.3.5",
"mocha": "^8.4.0",
"solc-0.8.13": "yarn:solc@^0.8.13",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"tslog": "^3.2.2",
"typechain": "^7.0.0",
"typescript": "^4.5.5",
"yargs": "^17.2.1"
}
}