-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
104 lines (104 loc) · 2.6 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@ribbon-finance/rvol",
"description": "Ethereum on-chain volatility data",
"license": "GPL-3.0-only",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ribbon-finance/rvol/issues"
},
"directories": {
"test": "test"
},
"author": "Ribbon Finance",
"version": "1.4.2",
"homepage": "https://ribbon.finance/",
"keywords": [
"ribbon",
"v2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ribbon-finance/rvol.git"
},
"files": [
"contracts/core",
"contracts/libraries",
"contracts/interfaces",
"contracts/tests"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.3.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"moment-timezone": "^0.5.33",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.11",
"solhint": "3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"ts-mocha": "^8.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"resolutions": {
"lodash": "4.17.21",
"underscore": "1.12.1"
},
"scripts": {
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"prepare": "husky install",
"lint:test": "eslint 'test/**/*.ts'",
"lint:test:fix": "yarn lint:test --fix",
"lint:test:prettier": "prettier --write 'test/**/*.ts'",
"lint:sol": "solhint -f table contracts/**/*.sol",
"lint:sol:prettier": "prettier --write \"contracts/**/*.sol\"",
"clean-logs": "yarn run hardhat remove-logs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"contracts/**/*.sol": [
"yarn lint:sol",
"yarn lint:sol:prettier"
],
"test/**": [
"yarn lint:test:fix",
"yarn lint:test:prettier"
],
"scripts/**": [
"yarn lint:ts:fix",
"yarn lint:ts:prettier"
]
},
"dependencies": {
"@chainlink/contracts": "^0.2.2",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.0.1",
"axios": "^0.21.1",
"hardhat-log-remover": "^2.0.2"
}
}