This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 2.46 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
{
"name": "ethereum-transaction-indexer",
"description": "🗂 Simple Ethereum transaction indexing service",
"license": "MIT",
"author": "Gabriel Montes <[email protected]>",
"main": "server.js",
"repository": "autonomoussoftware/ethereum-transaction-indexer",
"scripts": {
"api": "node api/server.js",
"docker:build": "docker build -t ethereum-transaction-indexer .",
"check": "dependency-check . && dependency-check . --unused --no-dev --ignore-module winston --ignore-module winston-papertrail --ignore-module winston-sentry-transport --ignore-module websocket-reconnector",
"check:outdated": "npm-check -p -i husky -i eslint-config-plugin:*",
"coverage": "nyc --lines 95 --functions 95 --branches 95 --reporter=lcov --reporter=text npm test",
"indexer": "node indexer/server.js",
"lint": "eslint --cache .",
"precommit": "npm run lint",
"prepare": "patch-package",
"prepush": "npm run check && npm run test",
"test": "mocha indexer/lib/@bloq/next-block/test indexer/test shared/test --exit"
},
"dependencies": {
"@bloq/service-logger": "git://github.com/bloq/service-logger.git",
"before-exit": "1.0.0",
"config": "1.30.0",
"lodash": "4.17.11",
"mongodb": "3.2.2",
"p-memoize": "1.0.0",
"promise-all-props": "1.0.1",
"promise-not-if-busy": "1.0.0",
"quick-lru": "3.0.0",
"redis": "2.8.0",
"restify": "7.2.1",
"restify-errors": "6.1.1",
"restify-router": "0.5.1",
"sinon": "7.3.1",
"socket.io": "2.2.0",
"web3": "1.0.0-beta.37",
"web3-utils": "1.0.0-beta.37",
"websocket-reconnector": "1.1.1",
"winston": "2.4.4",
"winston-papertrail": "1.0.5",
"winston-sentry-transport": "1.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"deep-equal-in-any-order": "1.0.13",
"dependency-check": "3.3.0",
"eslint": "5.16.0",
"eslint-config-bloq": "2.1.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsdoc": "4.7.0",
"eslint-plugin-mocha": "5.3.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prefer-arrow": "1.1.5",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-require-path-exists": "1.1.9",
"eslint-plugin-standard": "4.0.0",
"husky": "1.3.1",
"mocha": "6.0.2",
"mongo-mock": "3.7.1",
"npm-check": "5.9.0",
"nyc": "13.3.0",
"patch-package": "5.1.2",
"promise-prototype-finally": "1.0.0",
"proxyquire": "2.1.0",
"redis-mock": "0.44.0"
}
}