-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
76 lines (76 loc) · 2.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
{
"name": "@morpho-dao/morpho-v1",
"version": "2.0.0",
"description": "Core contracts of the Morpho Protocol V1.",
"author": "Morpho Labs <security@morpho.xyz>",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/morpho-dao/morpho-v1.git"
},
"bugs": {
"url": "https://github.com/morpho-dao/morpho-v1/issues"
},
"homepage": "https://github.com/morpho-dao/morpho-v1#readme",
"scripts": {
"test": "hardhat test test-ts/*.spec.ts",
"test:upgrade:stEth": "BLOCK_NUMBER=15580517 hardhat test test-ts/upgrades/stEth.spec.ts",
"lint": "yarn lint:sol && yarn lint:ts",
"lint:ts": "eslint . --ext .ts",
"lint:sol": "solhint 'src/**/*.sol'",
"format": "yarn fix:sol && yarn fix:ts",
"format:ts": "prettier --write './**/*.ts'",
"format:sol": "prettier --write './**/*.sol'",
"postinstall": "husky install"
},
"devDependencies": {
"@morpho-labs/ethers-multicall": "^1.3.1",
"@morpho-labs/morpho-ethers-contract": "^1.1.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@tenderly/hardhat-tenderly": "^1.1.6",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.1",
"hardhat": "^2.11.2",
"hardhat-preprocessor": "^0.1.5",
"husky": "^8.0.1",
"merkletreejs": "^0.2.32",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "1.0.0-beta.13",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@openzeppelin/contracts": "4.5.0",
"@openzeppelin/contracts-upgradeable": "4.5.2"
},
"jest": {
"clearMocks": true,
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"**/*.spec.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"verbose": true
}
}