-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 925 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 925 Bytes
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
{
"name": "olx-scrapper",
"version": "1.0.0",
"author": {
"email": "szymon@mscode.pl",
"name": "Szymon Bludnik"
},
"license": "MIT",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "husky",
"start": "tsx src/index.ts",
"test": "vitest",
"start:prod": "node dist/index.js"
},
"dependencies": {
"@biomejs/biome": "^2.2.2",
"@types/node-cron": "^3.0.11",
"@types/node-notifier": "^8.0.5",
"axios": "^1.11.0",
"chalk": "^5.6.0",
"cheerio": "^1.1.2",
"cli-table3": "^0.6.5",
"figlet": "^1.8.2",
"husky": "^9.1.7",
"node-cron": "^4.2.1",
"node-notifier": "^10.0.1",
"npm": "^11.5.2",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"puppeteer": "^24.17.0",
"tsx": "^4.20.5",
"zod": "^4.1.4"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/prompts": "^2.4.9",
"typescript": "^5.5.3",
"vitest": "^0.34.3"
},
"private": true
}