forked from consensys-vertical-apps/mmi-defi-adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.36 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
{
"name": "@metamask-institutional/defi-adapters",
"version": "0.6.13",
"description": "Defi adapters for MMI Dashboard",
"author": "MMI Team",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consensys-vertical-apps/mmi-defi-adapters"
},
"main": "lib/main/index.js",
"types": "lib/main/index.d.ts",
"files": [
"lib/main",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "npm run build -- --watch",
"adapters-cli": "node --env-file=.env lib/main/scripts/index.js",
"build-metadata": "npm run adapters-cli build-metadata --",
"build-types": "npm run adapters-cli build-types --",
"new-adapter": "npm run adapters-cli new-adapter --",
"build-snapshots": "npm run adapters-cli build-snapshots --",
"positions": "npm run adapters-cli positions --",
"profits": "npm run adapters-cli profits --",
"prices": "npm run adapters-cli prices --",
"tvl": "npm run adapters-cli tvl --",
"apy": "npm run adapters-cli apy --",
"apr": "npm run adapters-cli apr --",
"deposits": "npm run adapters-cli deposits --",
"withdrawals": "npm run adapters-cli withdrawals --",
"stress": "npm run adapters-cli stress --",
"fix": "run-s fix:*",
"fix:lint": "eslint \"src/**/*.ts\" --fix",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"lint": "eslint \"src/**/*.ts\"",
"prettier": "prettier \"src/**/*.ts\" --check",
"test": "jest",
"test:integration": "jest src/adapters/integration.test.ts",
"test:cov": "jest src --ci --coverage",
"prepare": "[ \"$NODE_ENV\" = production ] && exit 0; patch-package",
"build-docs": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-plugin-mdn-links --theme markdown --hideBreadcrumbs false --hideInPageTOC false --readme none --gitRemote origin --gitRevision main --out ./docs --sort source-order --entryPoints src/types/ --entryPointStrategy expand --excludePrivate false"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.0",
"@types/eslint": "^8.44.1",
"@types/ethereum-block-by-date": "^1.4.1",
"@types/inquirer": "^8.2.6",
"@types/jest": "^29.5.6",
"@types/lodash": "^4.14.197",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"ethereum-block-by-date": "^1.4.9",
"inquirer": "^8.2.6",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"pino-pretty": "^10.2.0",
"prettier": "^3.0.0",
"recast": "^0.23.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-hooks": "^1.1.2",
"typechain": "^8.3.1",
"typedoc": "^0.25.1",
"typedoc-gitlab-wiki-theme": "^1.1.1",
"typedoc-plugin-markdown": "^3.16.0",
"typedoc-plugin-mdn-links": "^3.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"pino": "^8.15.0",
"zod": "^3.22.4"
}
}