-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.4 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
{
"name": "@va/data-scraper",
"version": "0.0.1",
"description": "Data scraper",
"main": "/scripts/download-data.js",
"scripts": {
"start": "npm run scrape",
"scrape": "npm run download-data && npm run import-data",
"download-data": "node scripts/download-data.js",
"import-data": "node --expose-gc --max_old_space_size=4096 scripts/import-data.js",
"clear-db": "node scripts/clear-db.js",
"lint": "eslint . --ext .js || true",
"lint:fix": "eslint . --ext .js --fix || true"
},
"repository": {
"type": "git",
"url": "https://github.com/topcoderinc/va-data-scraper.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"ascii-progress": "^1.0.5",
"chalk": "^2.3.0",
"co": "^4.6.0",
"config": "^1.29.0",
"csv-parse": "^2.0.0",
"dotenv": "^4.0.0",
"line-by-line": "^0.1.6",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"memwatch-next": "^0.3.0",
"moment": "^2.20.1",
"readline": "^1.3.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"rxjs": "^5.5.6",
"rxjs-to-async-iterator": "^2.1.3",
"va-online-memorial-data-models": "github:topcoderinc/va-online-memorial-data-models",
"winston": "^2.4.0"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1"
}
}