-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "garimpeiro-olx",
"version": "1.0.0",
"description": "A web scraper that tracks OLX Brazil's products prices",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "tsnd --respawn --transpile-only --ignore-watch node_modules --no-notify src/index.ts",
"dev:with-args": "npm run dev -- --uf sp --ddd 12 --zona 'vale do paraiba' --cidade 'sao jose dos campos' --produto 'apartamento' --preco 300000 --paginas 3",
"build": "swc --delete-dir-on-start --quiet --out-dir dist/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrocha98/garimpeiro-olx.git"
},
"keywords": [
"nodejs",
"scrapper",
"web-scraping",
"typescript",
"olx",
"olx-br",
"jsdom"
],
"author": "Matheus Rocha <[email protected]> (https://mrocha.xyz/)",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mrocha98/garimpeiro-olx/issues"
},
"homepage": "https://github.com/mrocha98/garimpeiro-olx#readme",
"dependencies": {
"chalk": "^4.1.2",
"date-fns": "^2.23.0",
"got": "^11.8.2",
"jsdom": "^17.0.0",
"lodash.isempty": "^4.4.0",
"lodash.kebabcase": "^4.1.1",
"node-notifier": "^10.0.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"@swc/cli": "^0.1.49",
"@swc/core": "^1.2.85",
"@types/jsdom": "^16.2.13",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.kebabcase": "^4.1.6",
"@types/node": "^14.17.15",
"@types/node-notifier": "^8.0.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
}
}