forked from smartcontractkit/external-adapters-js
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.75 KB
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
{
"name": "@chainlink/ea-bootstrap",
"version": "0.2.0",
"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": "^0.21.1",
"decimal.js": "^10.3.1",
"express": "^4.17.1",
"fast-redact": "^3.0.1",
"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": "^3.1.2",
"redux": "^4.1.1",
"redux-logger": "^3.0.6",
"redux-observable": "^2.0.0",
"remote-redux-devtools": "^0.5.16",
"rxjs": "^7.3.0",
"tslib": "^2.3.1",
"uuid": "^8.3.2",
"ws": "^8.2.0"
},
"devDependencies": {
"@chainlink/types": "0.0.1",
"@types/express": "^4.17.13",
"@types/fast-redact": "^3.0.1",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/lru-cache": "^5.1.1",
"@types/node": "^14.14.35",
"@types/object-hash": "^2.1.1",
"@types/object-path": "^0.11.1",
"@types/pino": "^6.3.11",
"@types/pino-pretty": "^4.7.1",
"@types/promise-timeout": "^1.3.0",
"@types/redis": "^2.8.31",
"@types/redux-logger": "^3.0.9",
"@types/remote-redux-devtools": "^0.5.5",
"@types/sinon": "^10.0.2",
"@types/uuid": "^8.3.1",
"@types/ws": "^7.4.7",
"sinon": "^11.1.2",
"typescript": "^4.3.5"
}
}