package.json 843 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "webshop-scraper",
  3. "version": "1.0.0",
  4. "description": "A web scraper for extracting information from webshops (ShopRenter, WooCommerce, Shopify)",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "build": "tsc",
  8. "start": "node dist/index.js",
  9. "dev": "ts-node src/index.ts",
  10. "watch": "tsc -w"
  11. },
  12. "keywords": [
  13. "scraper",
  14. "webshop",
  15. "shopify",
  16. "woocommerce",
  17. "shoprenter"
  18. ],
  19. "author": "",
  20. "license": "ISC",
  21. "dependencies": {
  22. "express": "^4.18.2",
  23. "axios": "^1.6.0",
  24. "cheerio": "^1.0.0-rc.12",
  25. "turndown": "^7.1.2",
  26. "xml2js": "^0.6.2",
  27. "uuid": "^9.0.1"
  28. },
  29. "devDependencies": {
  30. "@types/express": "^4.17.20",
  31. "@types/node": "^20.9.0",
  32. "@types/uuid": "^9.0.7",
  33. "@types/xml2js": "^0.4.13",
  34. "typescript": "^5.2.2",
  35. "ts-node": "^10.9.1"
  36. }
  37. }