forked from Carmillap/dracula-airdrop
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.94 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
{
"name": "dracula-airdrop",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run compile && npm run typechain",
"compile": "npx buidler compile",
"typechain": "npx buidler compile && npx buidler typechain",
"test": "npx buidler test",
"generate-merkle-root": "ts-node scripts/generate-merkle-root.ts",
"verify-merkle-root": "ts-node scripts/verify-merkle-root.ts",
"verivy-amounts": "node scripts/checkMerkleAmounts.js",
"generate-address-list": "ts-node scripts/generate-address-list.ts -i scripts/drc_user.json -j scripts/drc_lp.json -k scripts/drc_hodler.json -o data/address-list.json",
"generate-uni-address-list": "ts-node scripts/generate-uni-address-list.ts -i scripts/uni-addresses.json -o data/uni-address-list.json -u user",
"deploy:ganache": "npm run build && npx buidler run --network ganache scripts/deploy.js",
"deploy:ganachelocal": "npm run build && npx buidler run --network localhost scripts/deploy.js",
"deploy": "npm run build && node scripts/deploy_web3.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/buidler": "*",
"@nomiclabs/buidler-ethers": "*",
"@nomiclabs/buidler-ganache": "*",
"@nomiclabs/buidler-waffle": "*",
"@nomiclabs/buidler-etherscan": "*",
"@openzeppelin/contracts": "^3.2.0",
"@typechain/ethers-v5": "*",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"buidler-typechain": "*",
"chai": "^4.2.0",
"commander": "^6.1.0",
"dotenv": "*",
"ethereum-waffle": "^3.1.1",
"ethereumjs-util": "^7.0.7",
"ethers": "^5.0.18",
"mocha": "^8.2.0",
"openzeppelin-solidity": "^3.2.0",
"rimraf": "^3.0.0",
"solc": "0.6.12",
"ts-generator": "*",
"ts-node": "^9.0.0",
"typechain": "*",
"typescript": "^4.0.3",
"bignumber.js": "^9.0.1",
"web3": "^1.3.0"
}
}