-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.78 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
{
"name": "Roci-Smart-Contracts-v2",
"version": "2.0.0",
"description": "Smart contracts for Roci Finance",
"author": "",
"license": "MIT",
"devDependencies": {
"@chainlink/contracts": "^0.4.1",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"add": "^2.0.6",
"npm": "^8.19.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"ethers": "^5.7.0",
"hardhat": "^2.10.2",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"typescript": "^4.8.2"
},
"scripts": {
"compile": "npx hardhat compile",
"clean": "npx hardhat clean",
"lint": "eslint scripts/ test/ --ext=ts",
"lint:fix": "eslint scripts/ test/ --ext=ts --fix",
"test": "npx hardhat test",
"makeAbi": "npx hardhat compile && npx hardhat run scripts/tasks/makeAbi.ts",
"check:collateralManager": "npx hardhat run scripts/deploy/collateralManager-check.ts",
"check:limitManager": "npx hardhat run scripts/deploy/limitManager-check.ts",
"check:loanManager": "npx hardhat run scripts/deploy/loanManager-check.ts",
"check:pool": "npx hardhat run scripts/deploy/pool-check.ts",
"check:priceFeed": "npx hardhat run scripts/deploy/priceFeed-check.ts",
"check:scoreDb": "npx hardhat run scripts/deploy/scoreDb-check.ts",
"check:settingsProvider": "npx hardhat run scripts/deploy/settingsProvider-check.ts"
}
}