package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 && npm run build:web",
  8. "build:web": "cd web && npm install && npm run build",
  9. "start": "node dist/index.js",
  10. "dev": "ts-node src/index.ts",
  11. "dev:web": "cd web && npm run dev",
  12. "watch": "tsc -w"
  13. },
  14. "keywords": [
  15. "scraper",
  16. "webshop",
  17. "shopify",
  18. "woocommerce",
  19. "shoprenter"
  20. ],
  21. "author": "",
  22. "license": "ISC",
  23. "dependencies": {
  24. "@types/better-sqlite3": "^7.6.13",
  25. "@types/node-cron": "^3.0.11",
  26. "axios": "^1.6.0",
  27. "better-sqlite3": "^12.4.1",
  28. "cheerio": "^1.0.0-rc.12",
  29. "express": "^4.18.2",
  30. "node-cron": "^4.2.1",
  31. "turndown": "^7.1.2",
  32. "uuid": "^9.0.1",
  33. "xml2js": "^0.6.2"
  34. },
  35. "devDependencies": {
  36. "@types/express": "^4.17.25",
  37. "@types/node": "^20.19.25",
  38. "@types/turndown": "^5.0.6",
  39. "@types/uuid": "^9.0.8",
  40. "@types/xml2js": "^0.4.14",
  41. "ts-node": "^10.9.2",
  42. "typescript": "^5.9.3"
  43. }
  44. }