Chatto/package.json

61 lines
1.8 KiB
JSON
Raw Normal View History

2019-11-30 07:36:10 +00:00
{
2019-12-02 12:00:00 +00:00
"dependencies": {
2020-02-14 13:48:22 +00:00
"@types/bootbox": "^5.2.0",
"@types/dompurify": "^2.0.0",
"@types/jquery": "^3.3.31",
2019-12-06 14:21:07 +00:00
"@types/markdown-it": "^0.0.9",
"@types/sjcl": "^1.0.29",
"@types/sprintf-js": "^1.1.2",
2019-12-02 12:00:00 +00:00
"alertifyjs": "^1.12.0",
2020-02-14 13:48:22 +00:00
"bootbox": "^5.4.0",
2019-12-12 07:38:53 +00:00
"builder-pattern": "^1.2.3",
2019-12-02 12:00:00 +00:00
"chart.js": "^2.9.3",
"dompurify": "^2.0.7",
"fuse.js": "^3.4.6",
"global": "^4.4.0",
2019-12-02 12:00:00 +00:00
"handlebars": "^4.5.3",
"helper-moment": "^0.2.0",
2019-12-02 12:00:00 +00:00
"loglevel": "^1.6.6",
"markdown-it": "^10.0.0",
"moment": "^2.24.0",
"promise-worker": "^2.0.1",
2019-12-02 12:00:00 +00:00
"sjcl": "^1.0.8",
2020-01-14 10:13:57 +00:00
"sprintf-js": "^1.1.2"
2019-12-02 12:00:00 +00:00
},
"devDependencies": {
"browserify": "^16.5.0",
"browserify-css": "^0.15.0",
2020-01-14 10:13:57 +00:00
"browserify-shim": "^3.8.14",
"grunt": "^1.0.4",
2020-05-29 10:00:32 +00:00
"grunt-banner": "^0.6.0",
2020-01-14 10:13:57 +00:00
"grunt-browserify": "^5.3.0",
2020-01-15 05:46:35 +00:00
"grunt-terser": "^1.0.0",
2020-01-14 10:13:57 +00:00
"tsify": "^4.0.1",
2020-01-15 05:46:35 +00:00
"typescript": "^3.7.4",
"uglify-js": "^3.7.5"
2019-12-02 12:00:00 +00:00
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"loglevel": "global:log",
"markdown-it": "global:markdownit",
"handlebars": "global:Handlebars",
"dompurify": "global:DOMPurify",
"fuse.js": "global:Fuse",
2019-12-11 10:30:45 +00:00
"sprintf-js": "global:sprintf",
2020-02-14 13:48:22 +00:00
"alertifyjs": "global:alertify",
"bootbox": {
"exports": "global:bootbox",
"depends": [
"@types/jquery"
]
}
2020-01-14 10:13:57 +00:00
},
"scripts": {
"watch": "watchify src/main/frontend/chat/main.ts -p [ tsify --target ES6 --noImplicitAny ] --debug -o src/main/resources/static/js/bundle.js"
2019-12-02 12:00:00 +00:00
}
}