-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1018 Bytes
/
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
{
"name": "soccer-it-crawling-scraping",
"version": "1.0.0",
"description": "Simple collection of crawling/scraping scripts that collects data for soccerit",
"main": "index.js",
"repository": "git@github.com:soccer-it/crawling-scraping-scripts.git",
"author": "Milson Ramos de Carvalho Júnior <@mjnr>",
"license": "MIT",
"scripts": {
"deploy": "node_modules/.bin/now --",
"build": "SCRAPER=$SCRAPER node_modules/.bin/parcel build app/scrapers/$SCRAPER/**.js --out-dir output/$SCRAPER/",
"run:robot": "node robot --scraper=$SCRAPER",
"deploy:scraper": "./node_modules/.bin/serverless deploy",
"dev:scraper": "./node_modules/.bin/serverless offline start"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"now": "16.3.1",
"parcel-bundler": "1.12.3",
"pre-commit": "1.2.2",
"ramda": "0.26.1",
"safedom": "0.1.9",
"shorthash": "0.0.2"
},
"dependencies": {
"puppeteer": "^1.20.0",
"superagent": "^5.1.0"
}
}