-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
47
48
49
{
"name": "@gearbox-protocol/core-v3",
"description": "Core smart contracts of Gearbox V3",
"version": "1.0.1",
"homepage": "https://gearbox.fi",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"contracts",
"scripts",
"types",
"dist"
],
"keywords": [
"gearbox"
],
"repository": {
"type": "git",
"url": "https://github.com/Gearbox-protocol/core-v3"
},
"license": "BUSL-1.1",
"scripts": {
"prepare": "husky install",
"prettier": "forge fmt",
"prettier:ci": "forge fmt",
"forge-install": "forge install --no-commit foundry-rs/forge-std"
},
"devDependencies": {
"@1inch/solidity-utils": "2.4.0",
"@chainlink/contracts": "^0.6.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "17.6.0",
"@gearbox-protocol/core-v2": "1.19.0-base.16",
"@gearbox-protocol/prettier-config": "^1.5.0",
"@gearbox-protocol/sdk-gov": "^2.28.0",
"@openzeppelin/contracts": "^4.9.3",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"rimraf": "^5.0.1"
},
"prettier": "@gearbox-protocol/prettier-config",
"lint-staged": {
"*.sol": "forge fmt",
"*.{json,md}": "prettier --write"
},
"dependencies": {}
}