-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@gearbox-protocol/oracles-v3",
"description": "Price feeds for Gearbox V3",
"version": "1.0.0",
"homepage": "https://gearbox.fi",
"keywords": [
"gearbox"
],
"repository": {
"type": "git",
"url": "https://github.com/Gearbox-protocol/oracles-v3"
},
"files": [
"contracts"
],
"license": "BUSL-1.1",
"scripts": {
"prepare": "husky install",
"prettier": "forge fmt",
"prettier:ci": "forge fmt",
"lint": "eslint \"**/*.ts\" --fix",
"lint:ci": "eslint \"**/*.ts\"",
"typecheck:ci": "tsc --noEmit",
"forge-install": "forge install --no-commit foundry-rs/forge-std"
},
"dependencies": {
"redstone-protocol": "^1.0.5"
},
"devDependencies": {
"@chainlink/contracts": "^0.4.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@gearbox-protocol/core-v2": "1.19.0-base.14",
"@gearbox-protocol/core-v3": "^1.51.0",
"@gearbox-protocol/eslint-config": "^1.6.1",
"@gearbox-protocol/prettier-config": "^1.5.0",
"@gearbox-protocol/sdk-gov": "^2.30.0",
"@openzeppelin/contracts": "4.9.3",
"@redstone-finance/evm-connector": "0.2.5",
"@typechain/ethers-v5": "^10.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"ethers": "5.4.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.2"
},
"prettier": "@gearbox-protocol/prettier-config",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.sol": "forge fmt",
"*.{json,md}": "prettier --write"
}
}