-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "delegation-warlord-airdrops",
"version": "1.0.0",
"description": "None",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage --network hardhat --solcoverjs .solcover.js",
"deploy": "npx hardhat run --network mainnet",
"generate-scores": "ts-node scripts/generate.ts",
"verify-proofs": "ts-node scripts/verify.ts"
},
"author": "Paladin",
"license": "MIT",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-vyper": "^3.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8",
"hardhat": "^2.17.1",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.0",
"ts-generator": "^0.1.1",
"ts-node": "^10.8.1",
"typechain": "^8.3.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"axios": "^1.6.0",
"dotenv": "^16.0.1",
"solidity-docgen": "^0.6.0-beta.34"
}
}