package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "clash-speed-test",
  3. "version": "1.0.0",
  4. "description": "Clash节点测速工具,支持定时监控和Telegram通知",
  5. "main": "src/app.js",
  6. "scripts": {
  7. "start": "node src/app.js",
  8. "dev": "nodemon src/app.js",
  9. "test": "jest",
  10. "migrate": "node src/database/migrate.js",
  11. "seed": "node src/database/seed.js",
  12. "launch": "node start.js",
  13. "test-subscription": "node test-subscription.js",
  14. "test-telegram": "node test-telegram.js",
  15. "get-chat-id": "node get-chat-id.js"
  16. },
  17. "keywords": [
  18. "clash",
  19. "speed-test",
  20. "telegram",
  21. "monitoring"
  22. ],
  23. "author": "",
  24. "license": "MIT",
  25. "dependencies": {
  26. "axios": "^1.6.0",
  27. "compression": "^1.7.4",
  28. "cors": "^2.8.5",
  29. "dotenv": "^16.3.1",
  30. "express": "^4.18.2",
  31. "helmet": "^7.1.0",
  32. "http-proxy-agent": "^7.0.2",
  33. "https-proxy-agent": "^7.0.6",
  34. "mysql2": "^3.6.5",
  35. "node-cron": "^3.0.3",
  36. "node-telegram-bot-api": "^0.64.0",
  37. "proxy-agent": "^6.5.0",
  38. "sequelize": "^6.35.0",
  39. "shadowsocks-js": "^1.2.1",
  40. "socks-proxy-agent": "^8.0.5",
  41. "winston": "^3.11.0",
  42. "yaml": "^2.3.4"
  43. },
  44. "devDependencies": {
  45. "jest": "^29.7.0",
  46. "nodemon": "^3.0.1",
  47. "supertest": "^6.3.3"
  48. }
  49. }