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.

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