-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
22 lines (22 loc) · 1000 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"dotenv": "^16.3.1",
"hardhat": "^2.13.0",
"hardhat-gas-reporter": "^1.0.9",
"solhint": "^3.4.1"
},
"scripts": {
"compile": "npx hardhat compile",
"deploy:local": "npx hardhat run scripts/deploy.ts --network hardhat",
"deploy:sepolia": "npx hardhat run scripts/deploy.ts --network sepolia",
"verify:sepolia": "npx hardhat run ./scripts/verify.ts --network sepolia",
"test": "npx hardhat test ./test/tests.test.ts --network hardhat",
"lint": "solhint 'contracts/**/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"slither": "slither . --solc-remaps '@openzeppelin=node_modules/@openzeppelin @chainlink=node_modules/@chainlink' --exclude external-function,low-level-calls,assembly --exclude-dependencies --filter-paths contracts/mock"
}
}