forked from UniverseXYZ/merkle-distributor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "merkle-drop",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"files": [
"build"
],
"engines": {
"node": ">=10"
},
"scripts": {
"precompile": "rimraf ./build/",
"compile": "npx hardhat compile",
"pretest": "yarn compile",
"test": "npx hardhat test",
"deploy": "npx hardhat deploy",
"generate-merkle-root": "ts-node scripts/generate-merkle-root.ts",
"generate-merkle-root:example": "ts-node scripts/generate-merkle-root.ts --input scripts/example.json",
"prepublishOnly": "yarn test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.1",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.0.0",
"@types/chai": "^4.2.18",
"@types/ethereumjs-util": "^6.1.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"axios": "^0.21.1",
"chai": "^4.3.4",
"commander": "6.1.0",
"dotenv": "^9.0.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.4",
"hardhat": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.5",
"hardhat-gas-reporter": "^1.0.4",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"rimraf": "^3.0.2",
"solidity-coverage": "^0.7.16",
"ts-node": "^9.1.1",
"typechain": "^5.0.0",
"typescript": "^4.2.4"
}
}