A self hosted chat application with end-to-end encrypted messaging.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.8 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. {
  2. "dependencies": {
  3. "@types/bootbox": "^5.2.0",
  4. "@types/dompurify": "^2.0.0",
  5. "@types/jquery": "^3.3.31",
  6. "@types/markdown-it": "^0.0.9",
  7. "@types/sjcl": "^1.0.28",
  8. "@types/sprintf-js": "^1.1.2",
  9. "alertifyjs": "^1.12.0",
  10. "bootbox": "^5.4.0",
  11. "builder-pattern": "^1.2.3",
  12. "chart.js": "^2.9.3",
  13. "dompurify": "^2.0.7",
  14. "fuse.js": "^3.4.6",
  15. "global": "^4.4.0",
  16. "handlebars": "^4.5.3",
  17. "helper-moment": "^0.2.0",
  18. "loglevel": "^1.6.6",
  19. "markdown-it": "^10.0.0",
  20. "moment": "^2.24.0",
  21. "promise-worker": "^2.0.1",
  22. "sjcl": "^1.0.8",
  23. "sprintf-js": "^1.1.2"
  24. },
  25. "devDependencies": {
  26. "browserify": "^16.5.0",
  27. "browserify-css": "^0.15.0",
  28. "browserify-shim": "^3.8.14",
  29. "grunt": "^1.0.4",
  30. "grunt-banner": "^0.6.0",
  31. "grunt-browserify": "^5.3.0",
  32. "grunt-terser": "^1.0.0",
  33. "tsify": "^4.0.1",
  34. "typescript": "^3.7.4",
  35. "uglify-js": "^3.7.5"
  36. },
  37. "browserify": {
  38. "transform": [
  39. "browserify-shim"
  40. ]
  41. },
  42. "browserify-shim": {
  43. "loglevel": "global:log",
  44. "markdown-it": "global:markdownit",
  45. "handlebars": "global:Handlebars",
  46. "dompurify": "global:DOMPurify",
  47. "fuse.js": "global:Fuse",
  48. "sprintf-js": "global:sprintf",
  49. "alertifyjs": "global:alertify",
  50. "bootbox": {
  51. "exports": "global:bootbox",
  52. "depends": [
  53. "@types/jquery"
  54. ]
  55. }
  56. },
  57. "scripts": {
  58. "watch": "watchify src/main/frontend/chat/main.ts -p [ tsify --target ES6 --noImplicitAny ] --debug -o src/main/resources/static/js/bundle.js"
  59. }
  60. }