You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 718B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "crawling-service",
  3. "version": "1.0.0",
  4. "description": "商品信息爬虫服务",
  5. "author": "lizhuang",
  6. "main": "src/app.js",
  7. "scripts": {
  8. "start": "node src/server.js",
  9. "dev": "nodemon src/app.js",
  10. "test": "jest"
  11. },
  12. "keywords": [
  13. "crawler",
  14. "playwright",
  15. "express"
  16. ],
  17. "license": "ISC",
  18. "dependencies": {
  19. "cors": "^2.8.5",
  20. "dotenv": "^16.4.5",
  21. "express": "^4.18.2",
  22. "form-data": "^4.0.2",
  23. "helmet": "^7.1.0",
  24. "node-fetch": "^2.7.0",
  25. "playwright": "^1.42.1",
  26. "punycode": "^2.3.1",
  27. "winston": "^3.11.0"
  28. },
  29. "devDependencies": {
  30. "jest": "^29.7.0",
  31. "nodemon": "^3.1.0"
  32. },
  33. "engines": {
  34. "node": ">=22.0.0"
  35. }
  36. }