-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "generic-fee-collector-contract",
"version": "1.0.0",
"description": "",
"scripts": {
"docgen": "hardhat docgen",
"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"
},
"keywords": [],
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.5",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"chai": "^4.3.7",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"ethers": "^5.7.2",
"hardhat": "^2.14.0",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solidity-docgen": "^0.6.0-beta.35",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}