-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 4.34 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
{
"name": "@ithil-protocol/v2-core",
"description": "Core smart contracts for the Ithil protocol",
"version": "1.0.0",
"license": "BUSL-1.1",
"keywords": [
"ithil",
"template",
"tokens",
"ethereum",
"solidity"
],
"repository": {
"type": "git",
"url": "https://github.com/Ithil-protocol/v2-core"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@tenderly/hardhat-tenderly": "^1.7.7",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@tsconfig/node18": "^2.0.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": "^20.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"axios": "^1.4.0",
"chai": "^4.2.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"hardhat": "^2.14.0",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"p-queue": "^7.3.4",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"rimraf": "^3.0.2",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.0.4",
"undici": "^5.22.1"
},
"packageManager": "yarn@3.6.0",
"resolutions": {
"solhint/@solidity-parser/parser": "^0.14.5"
},
"scripts": {
"clean": "rimraf cache out",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "solhint \"{src,test}/**/*.sol\"",
"postinstall": "husky install",
"prettier": "prettier --write \"**/*.{json,md,sol,yml}\"",
"prettier:check": "prettier --check \"**/*.{json,md,sol,yml}\"",
"hardhat": "hardhat",
"hardhat:node": "hardhat node",
"hardhat:deploy:localhost": "hardhat --network localhost run scripts/deploy.script.ts",
"hardhat:faucet:localhost": "hardhat --network localhost run scripts/faucet.hardhat.script.ts",
"hardhat:fork:tenderly": "hardhat --network tenderly run scripts/fork.script.ts",
"hardhat:faucet:tenderly": "hardhat --network tenderly run scripts/faucet.script.ts",
"hardhat:vaults:tenderly": "hardhat --network tenderly run scripts/fill-vaults.script.ts",
"hardhat:advanceTime:tenderly": "hardhat --network tenderly run scripts/advanceTime.ts",
"deploy:manager": "hardhat --network tenderly run scripts/deployments/deployManagerContract.ts",
"deploy:vaults": "hardhat --network tenderly run scripts/deployments/deployVaultsContracts.ts",
"deploy:ithil": "hardhat --network tenderly run scripts/deployments/deployIthilContract.ts",
"deploy:oracle": "hardhat --network tenderly run scripts/deployments/deployOracleContract.ts",
"deploy:aave": "hardhat --network tenderly run scripts/deployments/deployAaveServiceContract.ts",
"deploy:gmx": "hardhat --network tenderly run scripts/deployments/deployGmxServiceContract.ts",
"deploy:callOption": "hardhat --network tenderly run scripts/deployments/deployCallOptionServiceContract.ts",
"deploy:fixedYield": "hardhat --network tenderly run scripts/deployments/deployFixedYieldServiceContract.ts",
"deploy:feeCollector": "hardhat --network tenderly run scripts/deployments/deployFeeCollectorServiceContract.ts",
"deploy:manager:vaults": "run-s deploy:manager deploy:vaults",
"deploy:all:except:manager:vaults": "run-s deploy:ithil deploy:oracle deploy:aave deploy:gmx deploy:callOption deploy:fixedYield deploy:feeCollector",
"deploy:all": "run-s deploy:manager deploy:vaults deploy:ithil deploy:oracle deploy:aave deploy:gmx deploy:callOption deploy:fixedYield deploy:feeCollector",
"faucet": "hardhat --network tenderly run scripts/faucets/faucet.ts"
}
}