-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.8 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": "adex-market",
"version": "1.0.11",
"description": "Adex Market",
"main": "index.js",
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"start": "node ./bin/server.js",
"start-scraper": "node ./bin/scraper.js",
"dev-start": "nodemon ./bin/server.js",
"test": "node test/index.js",
"test-integration": "./test/run-integration.sh",
"benchmark": "./test/benchmark/benchmark.sh",
"lint": "eslint . && echo Linting check finished",
"lint:fix": "eslint --fix . && echo Linting fix finished",
"eslint-check": "eslint --print-config src/App.js | eslint-config-prettier-check",
"export-adx": "./scripts/export-adx.js",
"bq": "node ./scripts/bigquery.js"
},
"keywords": [
"adex",
"watcher",
"market"
],
"author": "Smart Code OOD",
"license": "MIT",
"dependencies": {
"@google-cloud/bigquery": "^4.7.0",
"adex-adview-manager": "^2.0.8",
"adex-models": "git+https://git@github.com/AdExBlockchain/adex-models.git#499114f10e52f06fe59199b187c7a9a79173a12e",
"bn.js": "^4.11.8",
"body-parser": "^1.18.3",
"celebrate": "^9.1.0",
"dotenv": "^6.2.0",
"eth-sig-util": "^2.1.1",
"ethereumjs-util": "^6.1.0",
"ethers": "^4.0.18",
"express": "^4.16.4",
"fake-useragent": "^1.0.1",
"form-data": "^2.3.3",
"fs": "0.0.1-security",
"header-parser": "^1.0.0",
"ipfs-http-client": "^30.1.0",
"mongodb": "^3.1.12",
"multer": "^1.4.1",
"node-fetch": "^2.6.7",
"p-limit": "^2.3.0",
"redis": "^3.1.1",
"request": "^2.88.0",
"tape": "^4.12.1",
"ua-parser-js": "^0.7.24",
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"nodemon": "^1.18.10",
"prettier": "^1.18.2"
}
}