-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "finance-job-scraper",
"version": "1.0.0",
"description": "A Node.js application for scraping job listings from finance-related job portals.",
"type": "module",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"run-prod": "pm2-runtime start ecosystem.config.cjs",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"finance",
"job scraper",
"web scraping",
"Node.js"
],
"author": "Louis Xie",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/louisxie0830/finance-job-scraper.git"
},
"dependencies": {
"axios": "^1.7.2",
"axios-retry": "^4.4.1",
"cheerio": "^1.0.0-rc.12",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-ipfilter": "^1.3.2",
"express-rate-limit": "^7.3.1",
"express-timeout-handler": "^2.2.2",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"morgan": "^1.10.0",
"p-queue": "^8.0.1",
"pm2": "^5.4.1",
"puppeteer": "^22.12.1",
"winston": "^3.13.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.4",
"prettier": "^3.3.2"
}
}