forked from defisaver/defisaver-v3-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.55 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
{
"name": "defisaver-v3-contracts",
"version": "3.1.5",
"description": "All the contracts related to the Defi Saver ecosystem",
"scripts": {
"compile": "npx hardhat compile",
"deploy": "cmd/run_deploy",
"test": "cmd/run_test",
"commit": "cz",
"verify": "cmd/run_verify",
"lint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"pretty": "./node_modules/.bin/prettier --write contracts/**/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DecenterApps/defisaver-v3-contracts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DecenterApps/defisaver-v3-contracts/issues"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/DecenterApps/defisaver-v3-contracts#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@defisaver/automation-sdk": "^3.0.2",
"@defisaver/sdk": "^1.0.14",
"@defisaver/tokens": "^1.5.10",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "2.0.2-rc.2",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@tenderly/hardhat-tenderly": "^1.3.2",
"axios": "^0.28.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv-safe": "^8.2.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.4.0",
"hardhat": "^2.22.2",
"hardhat-contract-sizer": "^2.0.1",
"hardhat-gas-reporter": "^1.0.1",
"hardhat-log-remover": "^2.0.0",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"readline-sync": "^1.4.10",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.13"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "npm run lint",
"commit-msg": "npx --no-install commitlint --edit $1"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@curvefi/api": "=2.52.1",
"@uniswap/sdk-core": "^3.1.1",
"@uniswap/smart-order-router": "^3.5.0",
"body-parser": "^1.20.2",
"coingecko-api": "^1.0.10",
"commander": "^8.3.0",
"cors": "^2.8.5",
"decimal.js": "^10.3.1",
"envfile": "^6.17.0",
"express": "^4.19.2",
"hardhat-ethers": "^1.0.1",
"yarn": "^1.22.10"
}
}