-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "@gearbox-protocol/periphery-v3",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:Gearbox-protocol/periphery-v3.git",
"author": "Mikael <[email protected]>",
"license": "MIT",
"files": [
"contracts"
],
"scripts": {
"prepare": "husky install",
"prettier": "forge fmt",
"prettier:ci": "forge fmt"
},
"devDependencies": {
"@1inch/solidity-utils": "^2.2.27",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "17.6.0",
"@gearbox-protocol/core-v2": "1.19.0-base.16",
"@gearbox-protocol/core-v3": "^1.45.3",
"@gearbox-protocol/integrations-v3": "^1.23.1",
"@gearbox-protocol/oracles-v3": "^1.8.1",
"@gearbox-protocol/sdk-gov": "^1.14.0",
"@openzeppelin/contracts": "^4.9.3",
"ds-test": "dapphub/ds-test",
"forge-std": "foundry-rs/forge-std"
},
"dependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"prettier": "^3.0.3"
},
"prettier": "@gearbox-protocol/prettier-config",
"lint-staged": {
"*.sol": "forge fmt",
"*.{json,md}": "prettier --write"
}
}