-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 752 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "yearn-protocol",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"ethlint": "^1.2.5",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"pretty-quick": "^3.1.0"
},
"scripts": {
"lint": "pretty-quick --pattern '**/*.*(sol)' --verbose",
"lint:check": "prettier --check **/*.sol",
"lint:fix": "pretty-quick --pattern '**//*.*(sol)' --staged --verbose",
"lint:write": "prettier --write **/*.sol **/*.json"
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"solium": "^1.2.5",
"truffle-flattener": "^1.5.0"
}
}