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.

65 lines
2.1 KiB

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