-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.49 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
{
"name": "aed-project",
"version": "1.0.0",
"scripts": {
"install": "npm install",
"audit": "npm audit",
"fix": "npm audit fix",
"prettier": "npm prettier --write .",
"check": "npx hardhat check",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"lint": "npx hardhat lint",
"test": "npx hardhat test",
"deploy:amoy": "npx hardhat run scripts/deploy.js --network amoy",
"deploy:polygon": "npx hardhat run scripts/deploy.js --network polygon",
"coverage": "npx hardhat coverage"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.2",
"@nomicfoundation/hardhat-ethers": "^4.0.3",
"@nomicfoundation/hardhat-ignition": "^3.0.6",
"@nomicfoundation/hardhat-ignition-ethers": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^3.0.3",
"@nomicfoundation/hardhat-toolbox": "^6.1.1",
"@nomicfoundation/ignition-core": "^3.0.6",
"@openzeppelin/contracts-upgradeable": "^5.5.0",
"@openzeppelin/hardhat-upgrades": "^3.9.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"chai": "^4.5.0",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"hardhat": "^3.1.0",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.17",
"ts-node": "^10.9.2",
"typechain": "^8.3.2"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^3.0.8",
"@openzeppelin/contracts": "^5.5.0"
}
}