package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "thingsboard-web-ui",
  3. "private": true,
  4. "version": "3.6.1",
  5. "description": "ThingsBoard Web UI 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 'WEB_FOLDER=./target/web ts-node server.ts'",
  12. "start-prod": "nodemon --watch '.' --ext 'ts' --exec 'WEB_FOLDER=./target/web NODE_ENV=production ts-node server.ts'",
  13. "build": "tsc"
  14. },
  15. "dependencies": {
  16. "compression": "^1.7.4",
  17. "config": "^3.3.7",
  18. "connect-history-api-fallback": "^1.6.0",
  19. "express": "^4.18.1",
  20. "http": "0.0.0",
  21. "http-proxy": "^1.18.1",
  22. "js-yaml": "^4.1.0",
  23. "winston": "^3.7.2",
  24. "winston-daily-rotate-file": "^4.7.1"
  25. },
  26. "nyc": {
  27. "exclude": [
  28. "test",
  29. "__tests__",
  30. "node_modules",
  31. "target"
  32. ]
  33. },
  34. "devDependencies": {
  35. "@types/compression": "^1.7.2",
  36. "@types/config": "^0.0.41",
  37. "@types/connect-history-api-fallback": "^1.3.5",
  38. "@types/express": "^4.17.13",
  39. "@types/http-proxy": "^1.17.9",
  40. "@types/node": "^18.0.0",
  41. "fs-extra": "^10.1.0",
  42. "nodemon": "^2.0.16",
  43. "pkg": "^5.7.0",
  44. "ts-node": "^10.8.1",
  45. "typescript": "^4.7.4"
  46. },
  47. "pkg": {
  48. "assets": [
  49. "node_modules/config/**/*.*"
  50. ]
  51. },
  52. "resolutions": {
  53. "color-string": "^1.5.5",
  54. "follow-redirects": "^1.14.8",
  55. "minimist": "^1.2.6"
  56. }
  57. }