-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "merkle-drop",
"version": "1.0.1",
"description": "Merkle drop for $SALTY initial distribution",
"authors": "Carl and Uni",
"license": "MIT",
"main": "index.ts",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "3.1.0",
"@types/chai": "^4.2.6",
"@types/lodash": "^4.14.165",
"@types/mocha": "^5.2.7",
"@types/node": "^14.14.25",
"axios": "^0.21.1",
"chai": "^4.2.0",
"commander": "^6.1.0",
"ethereum-waffle": "^3.0.0",
"ethereumjs-util": "^7.0.4",
"mocha": "^6.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"solc": "^0.6.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@truffle/hdwallet-provider": "^1.2.1",
"dotenv": "^8.2.0",
"graphql": "^15.4.0",
"graphql-request": "^3.3.0",
"hardhat": "^2.0.9",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"web3": "^1.3.0",
"web3-utils": "^1.3.0"
},
"scripts": {
"precompile": "rimraf ./build/",
"compile": "waffle",
"pretest": "yarn compile",
"test": "mocha",
"start": "ts-node ./index.ts",
"generate": "ts-node scripts/generate-merkle-root.ts --input ./claims.json",
"verify": "ts-node scripts/verify-merkle-root.ts --input ./result.json",
"prepublishOnly": "yarn test"
}
}