forked from scaffold-eth/scaffold-eth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.74 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
48
49
50
51
52
{
"name": "@lowk3v/hardhat",
"version": "1.0.0",
"private": true,
"main": "index.js",
"license": "MIT",
"devDependencies": {
"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": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.4.2",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.4.4",
"hardhat": "2.6.0",
"hardhat-deploy": "^0.9.0",
"hardhat-gas-reporter": "^1.0.4",
"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/460f40a260564ac4a4f4b3fffb032dad",
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"deploy": "hardhat deploy --export-all ../react-app/src/contracts/hardhat_contracts.json",
"postdeploy": "hardhat run scripts/publish.js",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"verify": "hardhat verify",
"mineContractAddress": "npx hardhat mineContractAddress",
"wallet": "npx hardhat wallet",
"fundedwallet": "npx hardhat fundedwallet",
"flatten": "npx hardhat flatten",
"clean": "npx hardhat clean"
}
}