-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.84 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "hardhat-ethers-v6-boilerplate",
"version": "0.0.1",
"description": "",
"author": "@helderjnpinto",
"license": "Apache 2.0",
"scripts": {
"docs": "npx hardhat docgen",
"generate:docs": "yarn docs && git add . && git commit -m 'docs: update documentation'",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"node": "npx hardhat node --no-deploy",
"deploy": "npx hardhat deploy",
"deploy:hardhat": "NODE_CONFIG_ENV=hardhat npx hardhat deploy --network hardhat",
"test:mumbai": "npm run mumbai test ./integration-test/*.test.ts",
"deploy:mumbai": "npm run mumbai deploy -- --tags polygon_MyToken,polygon_ReceiverWallet",
"mumbai": "NODE_CONFIG_ENV=mumbai hardhat --network mumbai",
"deploy:local-tenderly-polygon-fork": "npm run local-tenderly-polygon-fork deploy -- --tags polygon_MyToken,polygon_ReceiverWallet",
"local-tenderly-polygon-fork": "NODE_CONFIG_ENV=local-tenderly-fork hardhat --network local_tenderly_fork",
"test": "npx hardhat test",
"test:nd": "npx hardhat test --no-deploy --no-compile",
"solhint": "npx solhint -f table",
"solhint:contracts": "npm run solhint 'contracts/**/*.sol'",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.4",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.1",
"@openzeppelin/test-helpers": "^0.5.16",
"@openzeppelin/upgrades-core": "^1.31.1",
"@tenderly/hardhat-tenderly": "2.1.0-beta.1",
"@tenderly/sdk": "^0.2.1",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.2.0",
"@types/config": "^3.3.3",
"@types/hex-to-uuid": "^1.1.2",
"@types/mocha": ">=9.1.0",
"@types/node": "^20.6.0",
"axios": "^1.5.1",
"bignumber.js": "^9.1.2",
"chai": "^4.3.8",
"config": "^3.3.9",
"dotenv": "^16.3.1",
"eslint": "7.32.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.11.0",
"hardhat": "^2.17.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-docgen": "^1.3.0",
"hardhat-ethernal": "^3.2.5",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-tracer": "^2.6.0",
"hex-to-uuid": "^1.1.1",
"husky": "^8.0.3",
"prettier": "^2.8.0",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.6.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.6",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.2.2",
"validate-branch-name": "^1.3.0"
},
"dependencies": {}
}