package.json 876 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "axios": "^1.6.0",
  23. "cheerio": "^1.0.0-rc.12",
  24. "express": "^4.18.2",
  25. "turndown": "^7.1.2",
  26. "uuid": "^9.0.1",
  27. "xml2js": "^0.6.2"
  28. },
  29. "devDependencies": {
  30. "@types/express": "^4.17.20",
  31. "@types/node": "^20.9.0",
  32. "@types/turndown": "^5.0.6",
  33. "@types/uuid": "^9.0.7",
  34. "@types/xml2js": "^0.4.13",
  35. "ts-node": "^10.9.1",
  36. "typescript": "^5.2.2"
  37. }
  38. }