-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.46 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_NO_WARNINGS=1 hardhat test",
"coverage": "NODE_NO_WARNINGS=1 hardhat coverage",
"compile": "NODE_NO_WARNINGS=1 hardhat compile",
"size": "npm run clean && NODE_NO_WARNINGS=1 hardhat compile",
"scan:slither": "NODE_NO_WARNINGS=1 slither .",
"prescan:slither": "npm run clean",
"clean": "rm -rf artifacts cache",
"scan": "npm run scan:slither",
"docgen": "hardhat dodoc",
"lint": "solhint -f table contracts",
"lint:fix": "solhint -f table --fix contracts",
"prettier:check": "prettier --check contracts",
"prettier:fix": "prettier --write contracts",
"deploy": "hardhat run scripts/deploy.js --network mainnet"
},
"keywords": [],
"author": "",
"license": "BSL-1.1",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"dotenv": "^16.0.3",
"ethers": "^6.11.1",
"hardhat": "^2.21.0",
"hardhat-contract-sizer": "^2.3.1",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"solidity-coverage": "^0.8.10",
"squirrelly": "^9.0.0"
},
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@openzeppelin/contracts": "^5.0.2",
"@poanet/solidity-flattener": "^3.0.7",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"hardhat-abi-exporter": "^2.10.1"
}
}