forked from rift-finance/rift-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 693 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 693 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": "@rift/protocol",
"version": "2.0.0",
"repository": "git@github.com:recursive-research/rift-protocol.git",
"files": [
"src/**/*.sol"
],
"devDependencies": {
"@typechain/ethers-v5": "^10.0.0",
"husky": "^7.0.4",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"typechain": "^8.0.0"
},
"scripts": {
"lint": "yarn prettier && yarn solhint",
"prettier": "prettier --write 'src/**/*.sol'",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"typechain": "typechain --target ethers-v5 --out-dir ./typechain ./out/**/*.json"
}
}