-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.3 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.3 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
{
"name": "Access",
"version": "1.0.0",
"description": "Function access contract",
"main": "index.js",
"author": "Maksim Kiselev",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "5.1.0",
"@openzeppelin/contracts-upgradeable": "5.1.0",
"@openzeppelin/hardhat-upgrades": "3.5.0",
"dotenv": "^16.4.5",
"hardhat": "^2.22.15",
"hardhat-contract-sizer": "^2.10.0",
"prettier-plugin-solidity": "^1.4.1"
},
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"prettier_sol": "npx prettier --write --plugin=prettier-plugin-solidity \"contracts/**/*.sol\"",
"prettier-js": "npx prettier --write {scripts,test,utils,ignition/modules}/*.js --print-width 120 --tab-width 2",
"deploy-hardhat": "npx hardhat run scripts/deploy.js --network hardhat",
"deploy-polygon": "npx hardhat ignition deploy ignition/modules/ProxyModule.js --network polygon --verify",
"upgrade-polygon": "npx hardhat ignition deploy ignition/modules/UpgradeModule.js --network polygon --verify",
"make-mock-access": "npx hardhat run scripts/makeAccess.js --network polygon"
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.7",
"@nomicfoundation/hardhat-toolbox": "^5.0.0"
}
}