-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 KB
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
{
"name": "puppet-master",
"version": "1.0.0",
"description": "Puppeteer & Crawl4AI microservice for web automation, scraping, and AI processing with Bull queues",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"start:worker": "node src/workers/puppeteer.worker.js",
"dev:worker": "nodemon src/workers/puppeteer.worker.js",
"start:crawl4ai": "./start-crawl4ai.sh",
"start:all": "concurrently \"npm run start\" \"npm run start:worker\" \"npm run start:crawl4ai\"",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:worker\" \"npm run start:crawl4ai\""
},
"dependencies": {
"bull": "^4.10.4",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.8.0",
"helmet": "^7.0.0",
"http-status-codes": "^2.2.0",
"joi": "^17.9.2",
"moment": "^2.29.4",
"mongodb": "^5.7.0",
"mongoose": "^7.3.4",
"morgan": "^1.10.0",
"puppeteer": "^20.7.3",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "^8.44.0"
}
}