-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.12 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
{
"name": "airdrop-distribution",
"version": "1.0.0",
"description": "stake.link Airdrop Distribution",
"license": "MIT",
"scripts": {
"generate-merkle-tree": "ts-node scripts/merkleGeneration/generate-merkle-tree.ts",
"update-merkle-data": "ts-node scripts/merkleGeneration/update-merkle-data.ts",
"sdl-generate-balance-map": "ts-node scripts/balanceMapGeneration/SDL/generate-balance-map.ts",
"sdl-patch": "ts-node scripts/balanceMapGeneration/SDL/patch.ts",
"link-generate-balance-map": "ts-node scripts/balanceMapGeneration/LINK/generate-balance-map.ts",
"tsc": "tsc",
"prettier": "prettier --check \"src/**/*.ts*\" \"scripts/**/*.ts*\"",
"prettier:fix": "prettier --write \"src/**/*.ts*\" \"scripts/**/*.ts*\""
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@types/fs-extra": "^11.0.1",
"@types/node": "^17.0.14",
"axios": "^1.2.2",
"commander": "^9.4.1",
"fs-extra": "^11.1.0",
"hardhat": "^2.8.3",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"ethers": "^5.7.0"
}
}