-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.34 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
{
"name": "club-contracts",
"version": "1.0.0",
"description": "Token Minting, Distribution and Liquidity Rewards Infrastructure for Seed Club",
"scripts": {
"compile": "truffle compile",
"csv-to-json": "ts-node scripts/csv-list-to-json.ts",
"csv-to-json:example": "ts-node scripts/csv-list-to-json.ts --input scripts/example.csv",
"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",
"verify-merkle-root": "ts-node scripts/verify-merkle-root.ts",
"verify-merkle-root:example": "ts-node scripts/verify-merkle-root.ts --input scripts/result.json",
"test": "truffle compile && mocha"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.4.2",
"@truffle/hdwallet-provider": "^2.0.0",
"dotenv": "^12.0.4",
"ethers": "^5.5.3"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"chai": "^4.3.4",
"commander": "^8.3.0",
"eth-gas-reporter": "^0.2.24",
"ethereum-waffle": "^3.4.0",
"mocha": "^9.1.4",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"truffle-plugin-verify": "^0.5.20",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}