-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
28 lines (28 loc) · 985 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
{
"name": "actor-shopify-scraper",
"version": "0.0.1",
"type": "module",
"description": "Automate monitoring prices on the most popular solution for building online stores and selling products online. Crawl arbitrary Shopify-powered online stores and extract a list of all products in a structured form, including product title, price, description, etc.",
"dependencies": {
"apify": "^2.3.2",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"got-scraping": "^3.2.9",
"cheerio": "^1.0.0-rc.10",
"string-strip-html": "^9.1.12"
},
"devDependencies": {
"@apify/eslint-config": "^0.3.1",
"eslint": "^8.17.0"
},
"scripts": {
"start": "node main.js",
"lint": "eslint ./src --ext .js,.jsx",
"lint:fix": "eslint ./src --ext .js,.jsx --fix"
},
"author": {
"name": "Paulo Cesar",
"url": "https://github.com/pocesar"
},
"license": "Apache-2.0"
}