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
5 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. "loglevel": "^1.6.6",
  18. "markdown-it": "^10.0.0",
  19. "moment": "^2.24.0",
  20. "promise-worker": "^2.0.1",
  21. "sjcl": "^1.0.8",
  22. "sprintf-js": "^1.1.2"
  23. },
  24. "devDependencies": {
  25. "browserify": "^16.5.0",
  26. "browserify-css": "^0.15.0",
  27. "browserify-shim": "^3.8.14",
  28. "grunt": "^1.0.4",
  29. "grunt-browserify": "^5.3.0",
  30. "grunt-terser": "^1.0.0",
  31. "tsify": "^4.0.1",
  32. "typescript": "^3.7.4",
  33. "uglify-js": "^3.7.5"
  34. },
  35. "browserify": {
  36. "transform": [
  37. "browserify-shim"
  38. ]
  39. },
  40. "browserify-shim": {
  41. "loglevel": "global:log",
  42. "markdown-it": "global:markdownit",
  43. "handlebars": "global:Handlebars",
  44. "dompurify": "global:DOMPurify",
  45. "fuse.js": "global:Fuse",
  46. "sjcl": "global:sjcl",
  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. }