-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 858 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 858 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
{
"name": "node-rabbitmq-scraper",
"version": "1.0.0",
"description": "A Node.js application that uses RabbitMQ to send and process scraping jobs.",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "ts-node src/app.ts",
"test": "jest"
},
"dependencies": {
"amqplib": "^0.8.0",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"puppeteer": "^10.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.23",
"@types/jest": "^27.5.2",
"@types/node": "^14.18.63",
"@types/puppeteer": "^5.4.7",
"@types/supertest": "^2.0.16",
"jest": "^27.0.0",
"supertest": "^6.1.6",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"author": "Your Name",
"license": "MIT"
}