-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "va-data-scraper",
"version": "1.0.0",
"description": "VA Online Memorial - Data import & sync",
"engines": {
"node": "8.x.x"
},
"scripts": {
"start": "npm run download-data && npm run import-data",
"lint": "eslint . --ext .js || true",
"lint:fix": "eslint . --ext .js --fix || true",
"download-data": "node scripts/download-data.js",
"import-data": "node --max_old_space_size=4096 scripts/import-data.js"
},
"license": "ISC",
"dependencies": {
"ascii-progress": "^1.0.5",
"chalk": "^2.3.0",
"co": "^4.6.0",
"config": "^1.27.0",
"csv-parse": "^2.0.0",
"dotenv": "^4.0.0",
"lodash": "^4.17.4",
"moment": "^2.20.0",
"pg": "^7.4.0",
"pg-native": "^2.2.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sequelize": "^4.27.0",
"winston": "^2.4.0"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0"
}
}