forked from smartcontractkit/external-adapters-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "@chainlink/ea-bootstrap",
"version": "2.27.2",
"description": "Bootstrap an external adapter with this package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"prepack": "yarn build",
"build": "tsc -b",
"dev:remotedev": "./remotedev.sh",
"dev:metrics": "docker-compose up -d"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"ajv": "^8.6.2",
"axios": "1.6.8",
"decimal.js": "^10.3.1",
"fast-redact": "^3.0.1",
"fastify": "^3.29.4",
"lodash": "^4.17.21",
"lru-cache": "^6.0.0",
"object-hash": "^2.2.0",
"object-path": "^0.11.5",
"pino": "^6.13.0",
"pino-pretty": "^5.1.3",
"prom-client": "^13.2.0",
"promise-timeout": "^1.3.0",
"redis": "^4.0.0",
"redux": "^4.1.1",
"redux-logger": "^3.0.6",
"redux-observable": "^1.2.0",
"remote-redux-devtools": "^0.5.16",
"rxjs": "^6.6.3",
"tslib": "^2.1.0",
"uuid": "^8.3.0",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/fast-redact": "3.0.4",
"@types/jest": "27.5.2",
"@types/lodash": "4.17.1",
"@types/lru-cache": "5.1.1",
"@types/node": "16.18.96",
"@types/object-hash": "2.2.1",
"@types/object-path": "0.11.4",
"@types/pino": "6.3.12",
"@types/pino-pretty": "4.7.5",
"@types/promise-timeout": "1.3.3",
"@types/redux-logger": "3.0.13",
"@types/remote-redux-devtools": "0.5.8",
"@types/sinon": "10.0.20",
"@types/uuid": "8.3.4",
"@types/ws": "8.5.10",
"mock-socket": "9.3.1",
"sinon": "14.0.2",
"typescript": "5.0.4"
}
}