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.

66 lines
2.1 KiB

4 years ago
4 years ago
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/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. "prettier": "2.0.5",
  38. "tsify": "^4.0.1",
  39. "typescript": "^3.7.4",
  40. "uglify-js": "^3.7.5"
  41. },
  42. "browserify": {
  43. "transform": [
  44. "browserify-shim"
  45. ]
  46. },
  47. "browserify-shim": {
  48. "loglevel": "global:log",
  49. "markdown-it": "global:markdownit",
  50. "handlebars": "global:Handlebars",
  51. "dompurify": "global:DOMPurify",
  52. "fuse.js": "global:Fuse",
  53. "sprintf-js": "global:sprintf",
  54. "alertifyjs": "global:alertify",
  55. "bootbox": {
  56. "exports": "global:bootbox",
  57. "depends": [
  58. "@types/jquery"
  59. ]
  60. }
  61. },
  62. "scripts": {
  63. "watch": "watchify src/main/frontend/chat/main.ts -p [ tsify --target ES6 --noImplicitAny ] --debug -o src/main/resources/static/js/bundle.js",
  64. "watch:admin": "watchify src/main/frontend/admin/main.ts -p [ tsify --target ES6 --noImplicitAny ] --debug -o src/main/resources/static/js/adminBundle.js"
  65. }
  66. }