-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
75 lines (75 loc) · 1.85 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
{
"name": "yearn-api",
"license": "MIT",
"description": "Small and fast yearn.finance API",
"private": true,
"main": "app.mjs",
"author": "nymmrx <nymmrx.eth>",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap \"test/**/*.test.mjs\"",
"start": "fastify start -l info app.mjs --options",
"dev": "fastify start -w -l info -P app.mjs --options",
"lint": "eslint **/**.mjs"
},
"prettier": {
"printWidth": 100
},
"eslintConfig": {
"env": {
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {}
},
"dependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.1",
"@ethersproject/contracts": "^5.4.0",
"@ethersproject/providers": "^5.4.2",
"@fastify/autoload": "4.0.0",
"@fastify/caching": "7.0.0",
"@fastify/cors": "7.0.0",
"@fastify/redis": "5.0.0",
"@fastify/sensible": "4.0.0",
"@ladjs/graceful": "^1.0.5",
"@sentry/node": "^6.17.4",
"@sentry/tracing": "^6.17.4",
"@yfi/sdk": "3.0.0-alpha.9",
"abstract-cache": "^1.0.1",
"abstract-cache-redis": "^2.0.0",
"bree": "^6.2.1",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"fastify": "^3.27.0",
"fastify-cli": "^2.13.0",
"fastify-metrics": "^8.0.0",
"fastify-plugin": "^3.0.0",
"ioredis": "^4.27.6",
"ms": "^2.1.3",
"segfault-handler": "^1.3.0"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"sentry-testkit": "^3.3.7",
"tap": "^15.0.9"
},
"resolutions": {
"keccak": "^3.0.3",
"secp256k1": "^5.0.0"
}
}