-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.96 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
98
99
100
101
102
103
104
{
"name": "vaults-strategies-contracts",
"version": "1.0.0",
"description": "",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"prepare": "husky install",
"test/unit": "hardhat test ./test/unit/**/*.ts ./test/unit/**/**/*.ts",
"test/integration": "ENABLE_FORKING=true hardhat test ./test/integration/**/*.ts ./test/integration/**/**/*.ts",
"lint": "solhint 'contracts/**/*.sol' --fix && eslint '**/*.{js,ts}' --fix && npx prettier '**/*.{json,sol,md,js,yaml}' --write",
"start-fork": "ENABLE_FORKING=true hardhat node --hostname 127.0.0.1",
"deploy-contracts-fork": "ENABLE_FORKING=true npx hardhat run --network localhost scripts/deploy-all.ts",
"populate-fork": "ENABLE_FORKING=true npm run impersonate-accounts && npm run distribute-funds",
"reset-fork": "ENABLE_FORKING=true hardhat --network localhost fork:reset",
"impersonate-accounts": "hardhat --network localhost fork:impersonate-accounts",
"distribute-funds": "hardhat --network localhost fork:distribute-funds",
"increase-time": "hardhat --network localhost fork:increase-time",
"deploy": "hardhat run --network $npm_config_network scripts/deploy-all.ts",
"propose-upgrade": "hardhat run --network $npm_config_network scripts/propose-upgrade.ts"
},
"dependencies": {
"@defi-wonderland/smock": "2.0.7",
"@ethersproject/contracts": "5.5.0",
"@openzeppelin/contracts": "4.4.1",
"@openzeppelin/contracts-upgradeable": "4.4.1",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"hardhat-contract-sizer": "2.3.0",
"hardhat-storage-layout": "0.1.6",
"js-yaml": "4.1.0",
"prb-math": "2.4.1",
"yargs": "17.3.1"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@ethersproject/abstract-provider": "5.5.1",
"@gnosis.pm/safe-core-sdk": "1.2.0",
"@nomicfoundation/hardhat-network-helpers": "1.0.6",
"@nomiclabs/hardhat-ethers": "2.0.3",
"@nomiclabs/hardhat-etherscan": "2.1.8",
"@nomiclabs/hardhat-solhint": "2.0.0",
"@nomiclabs/hardhat-solpp": "2.0.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/hardhat-upgrades": "1.12.1",
"@openzeppelin/test-helpers": "0.5.15",
"@rumblefishdev/hardhat-kms-signer": "1.1.0",
"@studydefi/money-legos": "2.4.2",
"@swc/core": "1.2.160",
"@tenderly/hardhat-tenderly": "1.0.13",
"@typechain/ethers-v5": "8.0.5",
"@typechain/hardhat": "6.1.3",
"@types/chai": "4.3.0",
"@types/fs-extra": "9.0.13",
"@types/js-yaml": "4.0.5",
"@types/mocha": "9.0.0",
"@types/node": "16.11.12",
"@types/yargs": "17.0.8",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"aws-kms-signer": "0.4.0",
"aws-sdk": "2.1046.0",
"chai": "4.3.4",
"chai-ethers": "0.0.1",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "5.2.0",
"ethereum-waffle": "3.4.0",
"ethers": "5.5.2",
"fs-extra": "10.0.0",
"hardhat": "2.10.1",
"hardhat-abi-exporter": "2.7.2",
"hardhat-contract-sizer": "2.3.0",
"hardhat-deploy": "0.9.24",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-exposed": "0.1.9",
"hardhat-gas-reporter": "1.0.6",
"hardhat-preprocessor": "0.1.4",
"hardhat-spdx-license-identifier": "2.0.3",
"hardhat-tenderly": "1.0.1",
"hardhat-tracer": "1.0.0-alpha.6",
"hardhat-watcher": "2.1.1",
"husky": "7.0.4",
"mocha": "9.2.2",
"prettier": "2.5.1",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solhint": "3.3.6",
"solidity-coverage": "0.7.20",
"ts-generator": "0.1.1",
"ts-node": "10.7.0",
"typechain": "6.0.5",
"typescript": "4.5.4"
}
}