package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "thingsboard-js-executor",
  3. "private": true,
  4. "version": "3.6.1",
  5. "description": "ThingsBoard JavaScript Executor Microservice",
  6. "main": "server.ts",
  7. "bin": "server.js",
  8. "scripts": {
  9. "pkg": "tsc && pkg -t node16-linux-x64,node16-win-x64 --out-path ./target ./target/src && node install.js",
  10. "test": "echo \"Error: no test specified\" && exit 1",
  11. "start": "nodemon --watch '.' --ext 'ts' --exec 'ts-node server.ts'",
  12. "start-prod": "nodemon --watch '.' --ext 'ts' --exec 'NODE_ENV=production ts-node server.ts'",
  13. "build": "tsc"
  14. },
  15. "dependencies": {
  16. "@aws-sdk/client-sqs": "^3.121.0",
  17. "@azure/service-bus": "^7.5.1",
  18. "@google-cloud/pubsub": "^3.0.1",
  19. "amqplib": "^0.10.0",
  20. "config": "^3.3.7",
  21. "express": "^4.18.1",
  22. "js-yaml": "^4.1.0",
  23. "kafkajs": "^2.1.0",
  24. "long": "^5.2.0",
  25. "uuid-parse": "^1.1.0",
  26. "uuid-random": "^1.3.2",
  27. "winston": "^3.7.2",
  28. "winston-daily-rotate-file": "^4.7.1"
  29. },
  30. "nyc": {
  31. "exclude": [
  32. "test",
  33. "__tests__",
  34. "node_modules",
  35. "target"
  36. ]
  37. },
  38. "devDependencies": {
  39. "@types/amqplib": "^0.8.2",
  40. "@types/config": "^0.0.41",
  41. "@types/express": "^4.17.13",
  42. "@types/node": "^18.0.1",
  43. "@types/uuid-parse": "^1.0.0",
  44. "fs-extra": "^10.1.0",
  45. "nodemon": "^2.0.16",
  46. "pkg": "^5.7.0",
  47. "ts-node": "^10.8.1",
  48. "typescript": "^4.7.4"
  49. },
  50. "pkg": {
  51. "assets": [
  52. "node_modules/config/**/*.*"
  53. ]
  54. },
  55. "resolutions": {
  56. "ansi-regex": "^5.0.1",
  57. "color-string": "^1.5.5",
  58. "minimist": "^1.2.6",
  59. "node-fetch": "^2.6.7"
  60. }
  61. }