-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
85 lines (85 loc) · 2.42 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
{
"name": "adex-validator-stack",
"version": "0.11.8",
"description": "AdEx Validator stack (sentry, validator worker, watcher)",
"main": "bin/sentry.js",
"scripts": {
"lint": "eslint . -c .eslintrc.js --fix",
"start": "node bin/sentry.js",
"test": "node test/index.js",
"test-eth-adapter": "node test/ethereum_adapter.js",
"test-integration": "./test/run-integration-tests.sh",
"test-integration-external": "./test/run-integration-tests.sh external",
"analytics-aggr": "./scripts/analyticsAggregator.js",
"export-stake": "./scripts/export-stake.js",
"export-analytics": "./scripts/export-analytics.js",
"benchmark": "./test/run-integration-tests.sh benchmark",
"benchmark-docker": "./test/benchmark/benchmark.sh",
"bq": "node ./scripts/bigquery.js"
},
"bin": {
"adex-sentry": "./bin/sentry.js",
"adex-validator-worker": "./bin/validatorWorker.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdExNetwork/adex-validator-stack-js.git"
},
"keywords": [
"adex",
"sentry"
],
"author": "Smart Code OOD",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/AdExNetwork/adex-validator-stack-js/issues"
},
"homepage": "https://github.com/AdExNetwork/adex-validator-stack-js#readme",
"dependencies": {
"@google-cloud/bigquery": "^4.7.0",
"@makerdao/multicall": "^0.12.0",
"adex-adview-manager": "^2.1.0",
"adex-protocol-eth": "^4.2.3",
"base64url": "^3.0.1",
"bn.js": "^4.11.8",
"body-parser": "^1.18.3",
"celebrate": "^9.0.2",
"cors": "^2.8.5",
"ethers": "^4.0.47",
"express": "^4.16.4",
"graphql-request": "^2.1.0-next.1",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"mongodb": "^3.4.1",
"node-fetch": "^2.6.7",
"redis": "^3.1.1",
"ua-parser-js": "^0.7.24",
"winston": "^3.2.1",
"yargs": "^12.0.5"
},
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"ganache-cli": "^6.4.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"tap": "^12.6.1",
"tape": "^4.9.1",
"tape-catch": "^1.0.6"
}
}