-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 893 Bytes
/
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
{
"license": "MIT",
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.2.0",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"dotenv": "^10.0.0",
"hardhat": "^2.5.0",
"path": "^0.12.7",
"web3": "^1.4.0"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.21.1",
"@graphprotocol/graph-ts": "^0.20.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0"
},
"scripts": {
"test": "hardhat test --network hardhat",
"verify": "hardhat verify",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js",
"postdeploy": "hardhat run scripts/publish.js",
"interact": "hardhat run scripts/interact.js"
}
}