-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "compound-governance",
"repository": "https://github.com/compound-finance/compound-governance.git",
"author": "Arr00 <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10.4.0"
},
"scripts": {
"test": "hardhat test",
"coverage": "hardhat coverage",
"build": "hardhat compile",
"lint:fix": "prettier --write {*.{js,ts},**/*.{sol,js,ts}} && eslint --fix . --ext js,ts",
"lint:check": "concurrently \"prettier --check {*.{js,ts},**/*.{sol,js,ts}}\" \"eslint . --ext js,ts\"",
"prepare": "husky install"
},
"devDependencies": {
"@compound-finance/hardhat-match": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"concurrently": "^8.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"hardhat": "^2.15.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier-plugin-solidity": "^1.1.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint .",
"prettier --check"
],
"*.sol": [
"prettier --check"
]
}
}