-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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
{
"name": "contracts-base-hardhat",
"version": "1.0.0",
"description": "",
"scripts": {
"docgen": "hardhat docgen",
"format": "prettier --write .",
"lint-contracts": "solhint --max-warnings 0 'contracts/**/*.sol'",
"lint-ts": "eslint --max-warnings 0 '**/*.{js,ts}'",
"lint": "npm run lint-contracts && npm run lint-ts",
"test": "hardhat test"
},
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@xyrusworx/hardhat-solidity-json": "^1.0.2",
"chai": "^4.4.1",
"dotenv": "^16.3.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"ethers": "^6.10.0",
"hardhat": "^2.19.4",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}