This repository has been archived by the owner on May 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.53 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
{
"name": "vesper-pools",
"version": "3.0.0",
"description": "Vesper finance holding pools",
"license": "MIT",
"directories": {
"test": "test"
},
"scripts": {
"solhint": "solhint './contracts/**/*.sol'",
"solhint:fix": "prettier --write 'contracts/**/*.sol'",
"lint": "eslint --cache ./test/* ./tasks/* ./helper/*",
"lint:fix": "eslint --cache --fix ./test ./tasks/ ./helper/ --ext .js",
"hardhat": "hardhat",
"clean": "hardhat clean",
"compile": "hardhat compile",
"build": "npm run clean && npm run compile",
"coverage": "hardhat coverage",
"deploy": "hardhat deploy-core-contracts",
"deploy-buyback": "hardhat deploy-buyback",
"deploy-upgrader": "hardhat deploy-upgrader",
"upgrade-pool": "hardhat upgrade-pool",
"fork": "hardhat node --no-deploy",
"release": "hardhat create-release",
"test": "hardhat test",
"verify": "hardhat etherscan-verify",
"size-contract": "hardhat size-contracts",
"prepare": "husky install",
"postinstall": "patch-package",
"prettier": "prettier"
},
"devDependencies": {
"@defi-wonderland/smock": "^2.0.7",
"@ethersproject/hardware-wallets": "^5.6.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/test-helpers": "^0.5.11",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"chai-almost": "^1.0.1",
"compare-versions": "^4.1.3",
"del": "^2.2.2",
"dotenv": "^16.0.0",
"eslint": "6.8.0",
"eslint-config-bloq": "2.3.0",
"eslint-config-prettier": "6.9.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsdoc": "20.3.1",
"eslint-plugin-mocha": "6.2.2",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-require-path-exists": "1.1.9",
"eslint-plugin-standard": "4.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"ethers-multisend": "^2.1.1",
"hardhat": "^2.9.3",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.11.4",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-log-remover": "^2.0.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"lodash": "^4.17.21",
"patch-package": "^6.4.7",
"prettier-plugin-solidity": "1.0.0-beta.10",
"recursive-copy": "^2.0.14",
"solc": "0.8.9",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.20"
},
"engines": {
"node": ">=14.16.1",
"npm": ">=8.0.0"
}
}