-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.19 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "overcollateralized-borrowing",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"husky": {
"hooks": {
"pre-push": "npm run prettier"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "./node_modules/.bin/prettier --write contracts/**/*.sol contracts/*.sol",
"solhint": "./node_modules/.bin/solhint -f table contracts/**/*.sol contracts/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenLeverageDev/overcollateralized-borrowing.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/OpenLeverageDev/overcollateralized-borrowing/issues"
},
"homepage": "https://github.com/OpenLeverageDev/overcollateralized-borrowing#readme",
"dependencies": {
"@gnosis.pm/safe-core-sdk": "^3.1.1",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/test-helpers": "^0.5.15",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-periphery": "^1.1.0",
"bignumber.js": "^1.5.0",
"cloc": "^2.10.0",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.5.1",
"ganache-cli": "6.12.2",
"ganache-time-traveler": "^1.0.15",
"keccak256": "^1.0.3",
"lodash.template": "^4.5.0",
"merkletreejs": "^0.2.24",
"truffle": "^5.4.7",
"truffle-contract-size": "^2.0.1"
},
"bundleDependencies": false,
"devDependencies": {
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@truffle/hdwallet-provider": "2.0.15",
"eth-gas-reporter": "^0.2.20",
"eth-lightwallet": "^4.0.0",
"hardhat": "^2.12.6",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-truffle5": "^1.0.1",
"husky": "^8.0.3",
"mocha-logger": "^1.0.7",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.1",
"sol-merger": "^3.1.0",
"solhint": "^3.3.8",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16",
"truffle-plugin-stdjsonin": "github:mhrsalehi/truffle-plugin-stdjsonin",
"truffle-plugin-verify": "0.5.27",
"web3": "^1.8.1"
}
}