jobs-monorepo/services/scraper-glassdoor/package.json
Elshimy Ziad Magdy Taha 8ac872bdc6 feat: restructure project into monorepo with CI/CD
- Reorganized project structure into services/ and apps/ directories for better separation of concerns
- Added comprehensive CI/CD pipeline with GitHub Actions for testing and Docker builds
- Created .dockerignore file to optimize container builds
- Updated Makefile with new targets for each service and application
- Added detailed README with architecture overview, setup instructions and development guidelines
- Moved cron-analyzer to dedicate
2025-11-01 16:20:44 +05:00

26 lines
575 B
JSON

{
"name": "glassdoor-scraper",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/amqplib": "^0.10.7",
"amqplib": "^0.10.9",
"dotenv": "^17.2.3",
"puppeteer-core": "^24.25.0"
},
"devDependencies": {
"@types/node": "^24.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}