package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "test-ping": "node test-ping.js",
  16. "test-ping-new": "node test-ping-new.js",
  17. "get-chat-id": "node get-chat-id.js"
  18. },
  19. "keywords": [
  20. "clash",
  21. "speed-test",
  22. "telegram",
  23. "monitoring"
  24. ],
  25. "author": "",
  26. "license": "MIT",
  27. "dependencies": {
  28. "axios": "^1.6.0",
  29. "compression": "^1.7.4",
  30. "cors": "^2.8.5",
  31. "dotenv": "^16.3.1",
  32. "express": "^4.18.2",
  33. "helmet": "^7.1.0",
  34. "http-proxy-agent": "^7.0.2",
  35. "https-proxy-agent": "^7.0.6",
  36. "mysql2": "^3.6.5",
  37. "node-cron": "^3.0.3",
  38. "node-telegram-bot-api": "^0.64.0",
  39. "proxy-agent": "^6.5.0",
  40. "sequelize": "^6.35.0",
  41. "shadowsocks-js": "^1.2.1",
  42. "socks-proxy-agent": "^8.0.5",
  43. "tcp-ping": "^0.1.1",
  44. "winston": "^3.11.0",
  45. "yaml": "^2.3.4"
  46. },
  47. "devDependencies": {
  48. "jest": "^29.7.0",
  49. "nodemon": "^3.0.1",
  50. "supertest": "^6.3.3"
  51. }
  52. }