-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.08 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
{
"name": "covid-website-data",
"version": "1.0.0",
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/bigquery": "^5.2.0",
"@slack/web-api": "^5.12.0",
"airtable": "^0.10.0",
"algoliasearch": "^4.5.1",
"axios": "^0.21.1",
"command-line-args": "^5.1.1",
"csv-parse": "^4.14.1",
"dotenv": "^8.2.0",
"fast-xml-parser": "^3.17.4",
"fs-extra": "^9.0.1",
"luxon": "^1.25.0",
"node-fetch": "^2.6.1",
"twitter": "^1.7.1"
},
"scripts": {
"build": "node index.js",
"build:bigquery": "NODE_OPTIONS=--max_old_space_size=8192 node index.js --bigquery",
"build:screenshots": "node index.js --screenshots",
"build:volunteers": "node index.js --volunteers",
"build:ltcfacilities": "node index.js --ltcfacilities",
"build:tweets": "node index.js --tweets",
"build:annotations": "node index.js --annotations",
"build:crdtapi": "node index.js --crdtapi",
"build:hhs": "rm -rf ./_hhs && git clone --depth 1 https://github.com/COVID19Tracking/covid-tracking-data ./_hhs && node index.js --hhs"
}
}