forked from vincor1986/vSwap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (45 loc) · 1.45 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
{
"name": "hardhat",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.4.0"
},
"dependencies": {
"@eth-optimism/hardhat-ovm": "^0.2.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.2.0",
"@tenderly/hardhat-tenderly": "^1.0.10",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.3.0",
"hardhat": "2.4.3",
"hardhat-deploy": "^0.8.6",
"node-watch": "^0.7.0",
"qrcode-terminal": "^0.12.0",
"ramda": "^0.27.1"
},
"scripts": {
"chain": "hardhat node --network hardhat --no-deploy",
"fork": "hardhat node --no-deploy --network hardhat --fork https://mainnet.infura.io/v3/[API_KEY]",
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"postdeploy": "",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"verify": "hardhat verify"
}
}