-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "lil-devils-airdrop",
"version": "1.0.0",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npm run build && npx hardhat coverage --temp artifacts --network coverage"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.1.0",
"@ethersproject/constants": "^5.1.0",
"@openzeppelin/contracts": "^4.2.0"
},
"devDependencies": {
"@0x/subproviders": "^6.5.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.36",
"axios": "^0.21.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.4",
"ganache-cli": "^6.12.2",
"hardhat": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"web3-provider-engine": "^16.0.1"
}
}