-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "AssessorScraper",
"version": "1.0.0",
"description": "This is a web scraper which scrapes Massachusetts housing data from the Massachusetts Assessor’s Online Database.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mdodell/MassAssessorScraper.git"
},
"scripts": {
"init-env": "sh scripts/create-queues.sh",
"docker-start": "node_modules/.bin/serverless offline start --host 0.0.0.0 --region us-east-1",
"start": "sh scripts/start.sh",
"stop": "sh scripts/stop.sh",
"deploy": "serverless deploy --env production"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@supercharge/promise-pool": "^1.6.0",
"aws-sdk": "^2.817.0",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"cheerio-tableparser": "^1.0.1",
"moment": "^2.29.1",
"mongoose": "^5.10.8",
"serverless": "^2.21.1"
},
"devDependencies": {
"serverless-dotenv-plugin": "^3.1.0",
"serverless-offline": "^6.8.0",
"serverless-offline-scheduler": "^0.4.2",
"serverless-offline-sqs": "^4.1.1"
}
}