This repository has been archived by the owner on Aug 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
{
"name": "0x-tracker-worker",
"version": "1.0.0",
"description": "0x Tracker worker process which handles various ETF tasks related to trades and other website data.",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"start": "node .",
"test": "jest --coverage --maxWorkers 4",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xTracker/0x-tracker-worker.git"
},
"keywords": [
"ethereum",
"0x",
"web3"
],
"author": "Craig Bovis",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/0xTracker/0x-tracker-worker/issues"
},
"homepage": "https://0xtracker.com",
"devDependencies": {
"@elastic/elasticsearch-mock": "0.3.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-prettier": "3.1.2",
"husky": "2.4.1",
"jest": "24.9.0",
"lint-staged": "8.2.1",
"mongodb-memory-server": "6.6.1",
"prettier": "1.19.1",
"timekeeper": "2.2.0"
},
"dependencies": {
"@0x/order-utils": "10.4.11",
"@0x/utils": "6.1.1",
"@bugsnag/js": "6.4.2",
"@elastic/elasticsearch": "7.5.0",
"@hapi/joi": "17.1.1",
"axios": "0.19.0",
"bluebird": "3.5.5",
"bull": "3.12.1",
"cheerio": "1.0.0-rc.3",
"config": "3.1.0",
"dotenv-safe": "6.1.0",
"ethers": "5.0.24",
"lodash": "4.17.15",
"memory-cache": "0.2.0",
"metaget": "1.0.7",
"moment": "2.24.0",
"moment-round": "1.0.1",
"mongoose": "5.7.4",
"ms": "2.1.2",
"promise-poller": "1.7.0",
"rss-parser": "3.7.1",
"signale": "1.4.0",
"slugify": "1.4.0"
},
"engines": {
"node": "12.19.0",
"npm": "6.x.x"
}
}