-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "hardhat-project",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@pinata/sdk": "^1.1.23",
"antlr4": "~4.8.0",
"archiver": "^5.3.0",
"chai": "^4.3.6",
"chalk": "4.0",
"dotenv": "^16.0.0",
"download": "^8.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"extract-zip": "^2.0.1",
"fs-extra": "^10.0.0",
"ganache-time-traveler": "^1.0.16",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.27",
"replace-in-file": "^6.3.2",
"template-file": "^6.0.1"
},
"devDependencies": {
"@nomiclabs/hardhat-solpp": "^2.0.0",
"hardhat": "^2.8.4"
},
"scripts": {
"clean": "hardhat clean && rm -rf archiveWorkspace/* && rm -rf archive/* && rm -rf contracts/*",
"compile": "hardhat compile",
"test": "hardhat test test/*.js",
"npx-compile": "npx hardhat compile",
"construct": "hardhat run scripts/construct.js",
"deconstruct": "hardhat run scripts/deconstruct.js",
"verify": "hardhat run scripts/verifyDeployment.js"
}
}