-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 2.2 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
46
47
48
49
50
51
52
53
54
55
{
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.2",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"chai": "^4.3.10",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.9.0",
"hardhat": "^2.19.2",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0",
"solhint": "^4.0.0",
"solidity-coverage": "^0.8.5",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.3.2"
},
"scripts": {
"chain": "npx hardhat node",
"compile": "npx hardhat compile",
"clean": "npx hardhat clean",
"test": "REPORT_GAS=true npx hardhat test",
"contract-size": "npx hardhat contract-size",
"test:watch": "nodemon -x npx hardhat test -w contracts -w test -e js,ts,sol",
"lint": "npm run lint:solhint && npm run lint:ts",
"lint:ts": "eslint -f unix . --ignore-path ./.eslintignore",
"lint-fix": "eslint -f unix . --fix",
"lint:solhint": "solhint -f unix \"contracts/**/*.sol\" --max-warnings 0",
"format": "prettier --write .",
"coverage": "npx hardhat coverage",
"docs": "npx hardhat docgen",
"slither": "slither ./contracts --solc-remaps \"@openzeppelin=node_modules/@openzeppelin @chainlink=node_modules/@chainlink\" --exclude naming-convention,external-function,low-level-calls",
"slither-print": "slither ./contracts --solc-remaps \"@openzeppelin=node_modules/@openzeppelin @chainlink=node_modules/@chainlink\" --exclude naming-convention,external-function,low-level-calls --print human-summary",
"prepare": "husky install"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}