-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 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
{
"name": "etl",
"version": "2.1.2",
"description": "Extract DNAStack data and transform it into Sequence-centric ElasticSearch index",
"main": "dist/index.js",
"scripts": {
"build": "NODE_PATH=./src tsc",
"extract": "node dist --extract",
"transform": "node --max-old-space-size=4096 dist --transform",
"load": "node dist --load",
"all": "node --max-old-space-size=4096 dist --all",
"cron": "node --max-old-space-size=4096 dist --cron",
"server": "node --max-old-space-size=4096 dist --server",
"cronserver": "node --max-old-space-size=4096 dist --cron --server",
"dev": "npm run build && npm run cronserver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercluster-covid-data-portal/etl.git"
},
"keywords": [
"etl",
"supercluster",
"dnastack",
"typescript",
"mongo"
],
"author": "OICR",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/supercluster-covid-data-portal/etl/issues"
},
"homepage": "https://github.com/supercluster-covid-data-portal/etl#readme",
"dependencies": {
"@elastic/elasticsearch": "7.13.0",
"@supercharge/promise-pool": "^2.0.0",
"commander": "^8.3.0",
"cron": "^1.8.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"mongodb": "^4.1.4",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"typescript": "^4.4.4",
"url-join": "^4.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cron": "^1.7.3",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.176",
"@types/morgan": "^1.9.3",
"@types/node-fetch": "^2.0.0",
"@types/url-join": "^4.0.1"
},
"prettier": {
"printWidth": 120,
"trailingComma": "all",
"singleQuote": true
}
}