forked from wighawag/template-ethereum-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2 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
53
54
55
56
57
{
"description": "",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@openzeppelin/contracts": "^5.0.0",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.10",
"@types/mocha": "^10.0.4",
"@types/node": "^20.9.1",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"ethers": "^6.8.1",
"fs-extra": "^11.1.1",
"hardhat": "^2.19.1",
"hardhat-deploy": "^0.11.43",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-deploy-tenderly": "^0.2.0",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.2.0",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"name": "mycontracts",
"pnpm": {
"overrides": {
"mocha": "$mocha"
}
},
"scripts": {
"compile": "hardhat compile",
"coverage": "HARDHAT_DEPLOY_FIXTURE=true hardhat coverage",
"deploy": "ts-node utils/doAction.ts deploy",
"dev": "MINING_INTERVAL=\"3000,5000\" hardhat node --hostname 0.0.0.0 --watch",
"dev:node": "MINING_INTERVAL=\"3000,5000\" hardhat node --hostname 0.0.0.0",
"execute": "ts-node utils/doAction.ts run",
"export": "ts-node utils/doAction.ts export",
"fork:deploy": "ts-node utils/doAction.ts fork:deploy",
"fork:dev": "ts-node utils/doAction.ts fork:dev",
"fork:execute": "ts-node utils/doAction.ts fork:run",
"fork:node": "ts-node utils/doAction.ts fork:node",
"fork:test": "ts-node utils/doAction.ts fork:test",
"format": "prettier --check \"**/*.{ts,js,sol}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json,sol}\"",
"gas": "REPORT_GAS=true hardhat test",
"local:dev": "hardhat --network localhost deploy --watch",
"prepare": "ts-node utils/setup.ts && hardhat typechain",
"tenderly:push": "ts-node utils/doAction.ts tenderly:push",
"test": "HARDHAT_DEPLOY_FIXTURE=true HARDHAT_COMPILE=true mocha --bail --recursive test",
"verify": "ts-node utils/doAction.ts verify",
"void:deploy": "hardhat deploy --report-gas"
},
"version": "0.0.1"
}