-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 892 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
23
24
25
{
"name": "hardhat_nft_marketplace_2",
"version": "1.2.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"hardhat-deploy": "^0.11.23"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.1",
"@solidstate/contracts": "^0.0.54",
"dotenv": "^16.0.3"
},
"scripts": {
"slither": "slither . --solc-remaps '@openzeppelin=node_modules/@openzeppelin @solidstate=node_modules/@solidstate' --exclude naming-convention,external-function,low-level-calls",
"toolbox": "docker run -it --rm -v $PWD:/src trailofbits/eth-security-toolbox",
"lint": "solhint 'contracts/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write ."
}
}