-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "scraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npx tsx src/index.ts",
"start:scheduler": "npx tsx src/Scheduler/index.ts",
"test": "jest --detectOpenHandles",
"build": "tsc",
"docs": "typedoc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^10.0.0",
"eslint": "^9.6.0",
"fs": "^0.0.1-security",
"globals": "^15.8.0",
"https": "^1.0.0",
"jest": "^29.7.0",
"node-cron": "^3.0.3",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.3"
},
"dependencies": {
"@types/mongodb": "^4.0.7",
"dotenv": "^16.4.5",
"mongodb": "^6.8.0",
"node-html-parser": "^6.1.13",
"puppeteer": "^22.13.0",
"uuid": "^10.0.0"
}
}