package.json 1013 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "@types/better-sqlite3": "^7.6.13",
  23. "@types/node-cron": "^3.0.11",
  24. "axios": "^1.6.0",
  25. "better-sqlite3": "^12.4.1",
  26. "cheerio": "^1.0.0-rc.12",
  27. "express": "^4.18.2",
  28. "node-cron": "^4.2.1",
  29. "turndown": "^7.1.2",
  30. "uuid": "^9.0.1",
  31. "xml2js": "^0.6.2"
  32. },
  33. "devDependencies": {
  34. "@types/express": "^4.17.25",
  35. "@types/node": "^20.19.25",
  36. "@types/turndown": "^5.0.6",
  37. "@types/uuid": "^9.0.8",
  38. "@types/xml2js": "^0.4.14",
  39. "ts-node": "^10.9.2",
  40. "typescript": "^5.9.3"
  41. }
  42. }