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.7 KiB

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-browserify": "^5.3.0",
  31. "grunt-terser": "^1.0.0",
  32. "tsify": "^4.0.1",
  33. "typescript": "^3.7.4",
  34. "uglify-js": "^3.7.5"
  35. },
  36. "browserify": {
  37. "transform": [
  38. "browserify-shim"
  39. ]
  40. },
  41. "browserify-shim": {
  42. "loglevel": "global:log",
  43. "markdown-it": "global:markdownit",
  44. "handlebars": "global:Handlebars",
  45. "dompurify": "global:DOMPurify",
  46. "fuse.js": "global:Fuse",
  47. "sprintf-js": "global:sprintf",
  48. "alertifyjs": "global:alertify",
  49. "bootbox": {
  50. "exports": "global:bootbox",
  51. "depends": [
  52. "@types/jquery"
  53. ]
  54. }
  55. },
  56. "scripts": {
  57. "watch": "watchify ts/src/main.ts -p [ tsify --target ES6 --noImplicitAny ] --debug -o ../resources/static/js/bundle.js"
  58. }
  59. }