-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.7 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "hardhat-project",
"license": "MIT",
"version": "1.0.0",
"author": "Daniel Liu",
"description": "hardhat project",
"main": "",
"keywords": [
"BlockChain",
"Ethereum",
"DeFi",
"Smart contracts",
"Solidity",
"ERC20",
"Hardhat"
],
"homepage": "https://github.com/gzliudan/hardhat-project#README",
"repository": {
"type": "git",
"url": "git+https://github.com/gzliudan/hardhat-project"
},
"bugs": {
"url": "https://github.com/gzliudan/hardhat-project/issues",
"email": "liudaniel@qq.com"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0",
"yarn": ">=1.22.0"
},
"scripts": {
"clean": "rm -rf coverage.json coverage cache artifacts",
"compile": "hardhat compile",
"test": "hardhat test",
"test:local": "hardhat test --network local test/v0.8.23/*.js test/v0.8.28/*.js",
"test:xdcdev": "hardhat test --network xdcdev test/v0.8.23/*.js test/v0.8.28/*.js",
"test:apothem": "hardhat test --network apothem test/v0.8.23/*.js test/v0.8.28/*.js",
"test:xinfin": "hardhat test --network xinfin test/v0.8.23/*.js test/v0.8.28/*.js",
"make": "yarn clean && yarn compile",
"deploy:local": "hardhat run --network local scripts/deploy-all.js",
"deploy:dev": "hardhat run --network dev scripts/deploy-all.js",
"deploy:xdcdev": "hardhat run --network xdcdev scripts/deploy-all.js",
"deploy:apothem": "hardhat run --network apothem scripts/deploy-all.js",
"deploy:amoy": "hardhat run --network amoy scripts/deploy-all.js",
"deploy:xinfin": "hardhat run --network xinfin scripts/deploy-all.js",
"deploy:mumbai": "hardhat run --network mumbai scripts/deploy-all.js",
"deploy:polygon": "hardhat run --network polygon scripts/deploy-all.js",
"deploy:goerli": "hardhat run --network goerli scripts/deploy-all.js",
"deploy:sepolia": "hardhat run --network sepolia scripts/deploy-all.js",
"deploy:mainnet": "hardhat run --network mainnet scripts/deploy-all.js",
"verify:xdcdev": "hardhat run --network xdcdev scripts/verify-all.js",
"verify:apothem": "hardhat run --network apothem scripts/verify-all.js",
"verify:xinfin": "hardhat run --network xinfin scripts/verify-all.js",
"verify:mumbai": "hardhat run --network mumbai scripts/verify-all.js",
"verify:amoy": "hardhat run --network amoy scripts/verify-all.js",
"verify:polygon": "hardhat run --network polygon scripts/verify-all.js",
"verify:goerli": "hardhat run --network goerli scripts/verify-all.js",
"verify:sepolia": "hardhat run --network sepolia scripts/verify-all.js",
"verify:mainnet": "hardhat run --network mainnet scripts/verify-all.js"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.10",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.10",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"chai": "^4.5.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"ethers": "^6.13.5",
"hardhat": "^2.22.19",
"hardhat-gas-reporter": "^2.2.2",
"prettier": "^3.5.3",
"prettier-plugin-solidity": "^1.4.2",
"solhint": "^5.0.5",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.14",
"typechain": "^8.3.2"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2"
}
}