-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "stakehound-merkle-distributor",
"bin": {
"merkle-distributor-cli": "dist/index.js"
},
"version": "0.0.1",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.167",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.13",
"@types/treeify": "^1.0.0",
"@types/yargs": "^15.0.12",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.1",
"ethlint": "^1.2.5",
"hardhat": "^2.1.2",
"hardhat-typechain": "^0.3.5",
"husky": "^4.3.0",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"pretty-quick": "^3.0.2",
"ts-essentials": "^7.0.1",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3"
},
"scripts": {
"lint": "pretty-quick --pattern '**/*.*(sol|json)' --verbose",
"lint:check": "prettier --check **/*.sol **/*.json",
"lint:fix": "pretty-quick --pattern '**/*.*(sol|json)' --staged --verbose",
"clean": "rm -rf dist",
"build:cli": "tsc --build ./tsconfig.build.json",
"build": "npm run clean && npm run build:cli",
"typegen": "typechain --outDir src/contract-types --target ethers-v5 \"src/abi/*.json\""
},
"dependencies": {
"@ethersproject/providers": "^5.0.18",
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/contracts-upgradeable": "^3.3.0",
"@openzeppelin/hardhat-upgrades": "^1.3.1",
"@uniswap/sdk": "^3.0.3",
"aws-sdk": "^2.828.0",
"bignumber.js": "^9.0.1",
"bip39": "^3.0.3",
"buffer-reverse": "^1.0.1",
"cids": "^1.1.5",
"dotenv": "^8.2.0",
"ethereum-cryptography": "^0.1.3",
"ethereumjs-util": "^7.0.7",
"ethers": "^5.0.26",
"lodash": "^4.17.20",
"treeify": "^1.1.0",
"winston": "^3.3.3",
"yargs": "^16.2.0",
"zod": "^2.0.0-beta.30"
}
}