-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.95 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.95 KB
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": "@scaffold-eth/hardhat",
"version": "1.0.0",
"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": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@openzeppelin/contracts": "^4.7.3",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/mocha": "^9.1.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"ethers": "^5.4.4",
"hardhat": "^2.10.2",
"hardhat-abi-exporter": "^2.8.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",
"solidity-coverage": "^0.7.21"
},
"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"
}
}