package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "thingsboard-js-executor",
  3. "private": true,
  4. "version": "3.3.4",
  5. "description": "ThingsBoard JavaScript Executor Microservice",
  6. "main": "server.js",
  7. "bin": "server.js",
  8. "scripts": {
  9. "pkg": "pkg -t node12-linux-x64,node12-win-x64 --out-path ./target . && node install.js",
  10. "test": "echo \"Error: no test specified\" && exit 1",
  11. "start": "nodemon server.js",
  12. "start-prod": "NODE_ENV=production nodemon server.js"
  13. },
  14. "dependencies": {
  15. "@azure/service-bus": "^1.1.9",
  16. "@google-cloud/pubsub": "^2.5.0",
  17. "amqplib": "^0.6.0",
  18. "aws-sdk": "^2.741.0",
  19. "azure-sb": "^0.11.1",
  20. "config": "^3.3.1",
  21. "express": "^4.17.1",
  22. "js-yaml": "^3.14.0",
  23. "kafkajs": "^1.15.0",
  24. "long": "^4.0.0",
  25. "uuid-parse": "^1.1.0",
  26. "uuid-random": "^1.3.2",
  27. "winston": "^3.3.3",
  28. "winston-daily-rotate-file": "^4.5.0"
  29. },
  30. "nyc": {
  31. "exclude": [
  32. "test",
  33. "__tests__",
  34. "node_modules",
  35. "target"
  36. ]
  37. },
  38. "devDependencies": {
  39. "fs-extra": "^10.0.0",
  40. "nodemon": "^2.0.12",
  41. "pkg": "^5.3.1"
  42. },
  43. "pkg": {
  44. "assets": [
  45. "node_modules/config/**/*.*"
  46. ]
  47. }
  48. }