-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
122 lines (122 loc) · 2.98 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"version": "4.3.0",
"license": "MIT",
"name": "@aave/protocol-js",
"description": "Aave protocol data aggregation tool",
"keywords": [
"Aave",
"protocol",
"lending",
"defi"
],
"sideEffects": false,
"author": "Aave <tech@aave.com>",
"contributors": [
{
"name": "Andrey Kozlov",
"email": "andrey@aave.com"
},
{
"name": "Ernesto Boado",
"email": "ernesto@aave.com"
},
{
"name": "Emilio Frangella",
"email": "emilio@aave.com"
},
{
"name": "Pol Sendra",
"email": "pol@aave.com"
},
{
"name": "Lukas Strassel",
"email": "lukas@aave.com"
},
{
"name": "Daniel Martin",
"email": "daniel@aave.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/aave/aave-js.git"
},
"module": "dist/protocol-js.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && cp -R ./src/v2/graphql ./dist/graphql && cp -R ./src/v1/graphql ./dist/v1/graphql && cp -R ./src/v2/graphql ./dist/v2/graphql",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"compile": "SKIP_LOAD=true hardhat compile",
"release": "standard-version",
"release:prod": "yarn release --message \"chore(release): Release v%s :tada:\" --skip.tag"
},
"devDependencies": {
"@typechain/ethers-v5": "^4.0.0",
"@types/bs58": "^4.0.1",
"@types/jest": "^26.0.14",
"@types/node": "^12.7.5",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"env-cmd": "^10.1.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"ethers": "5.0.31",
"hardhat": "^2.0.3",
"hardhat-typechain": "^0.3.3",
"husky": "^4.3.0",
"jest": "^26.1.0",
"prettier": "^2.2.1",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typechain": "^4.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"axios": "^0.21.0",
"bignumber.js": "^9.0.1",
"bs58": "^4.0.1",
"reflect-metadata": "^0.1.13",
"standard-version": "^9.1.0"
},
"peerDependencies": {
"ethers": "^5.0.24"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"eslint": {
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:prettier/recommended"
]
},
"resolutions": {
"**/typescript": "^4.0.5",
"**/@typescript-eslint/eslint-plugin": "^4.6.1",
"**/@typescript-eslint/parser": "^4.6.1"
}
}