-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.73 KB
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
{
"name": "priceriskmodule",
"version": "2.0.0",
"description": "Risk Module for the Ensuro Protocol that's triggered based on the change in the price of an asset.",
"scripts": {
"lint": "eslint test/**/*.js",
"prettier": "prettier --write 'contracts/**/*.sol' --write 'test/**/*.js'",
"solhint": "solhint 'contracts/**/*.sol'"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^3.0.4",
"@typechain/ethers-v6": "^0.5.1",
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"chai": "^4.2.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"hardhat": "^2.19.5",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-dependency-compiler": "^1.1.3",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"solhint-plugin-prettier": "0.1.0",
"ts-node": "^10.9.2",
"typescript": "^4.8.2"
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@ensuro/core": "^2.8.2",
"@ensuro/swaplibrary": "^0.1.1",
"@openzeppelin/contracts": "^4.9.2",
"@openzeppelin/contracts-upgradeable": "^4.9.2",
"@uniswap/v3-periphery": "^1.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ensuro/price-risk-module.git"
},
"keywords": [
"ensuro",
"risk",
"module",
"price",
"oracles"
],
"author": "guillermo@ensuro.co",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ensuro/price-risk-module/issues"
},
"homepage": "https://github.com/ensuro/price-risk-module#readme"
}