mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a8f48185b5
Major step, since this is the first inline HTML element which needed advanced parsing out on the markdown side, since not commonmark supported.
45 lines
2.0 KiB
JSON
45 lines
2.0 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build:css:dev": "sass ./resources/sass:./public/dist",
|
|
"build:css:watch": "sass ./resources/sass:./public/dist --watch",
|
|
"build:css:production": "sass ./resources/sass:./public/dist -s compressed",
|
|
"build:js:dev": "esbuild --bundle ./resources/js/index.js --outfile=public/dist/app.js --sourcemap --target=es2019 --main-fields=module,main",
|
|
"build:js:watch": "chokidar --initial \"./resources/**/*.js\" -c \"npm run build:js:dev\"",
|
|
"build:js:production": "NODE_ENV=production esbuild --bundle ./resources/js/index.js --outfile=public/dist/app.js --sourcemap --target=es2019 --main-fields=module,main --minify",
|
|
"build:js_editor:dev": "esbuild --bundle ./resources/js/editor.js --outfile=public/dist/editor.js --sourcemap --target=es2019 --main-fields=module,main",
|
|
"build:js_editor:watch": "chokidar --initial \"./resources/js/editor.js\" \"./resources/js/editor/**/*.js\" -c \"npm run build:js_editor:dev\"",
|
|
"build": "npm-run-all --parallel build:*:dev",
|
|
"production": "npm-run-all --parallel build:*:production",
|
|
"dev": "npm-run-all --parallel watch livereload",
|
|
"watch": "npm-run-all --parallel build:*:watch",
|
|
"livereload": "livereload ./public/dist/",
|
|
"permissions": "chown -R $USER:$USER bootstrap/cache storage public/uploads"
|
|
},
|
|
"devDependencies": {
|
|
"chokidar-cli": "^3.0",
|
|
"esbuild": "0.13.12",
|
|
"livereload": "^0.9.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"punycode": "^2.1.1",
|
|
"sass": "^1.43.4"
|
|
},
|
|
"dependencies": {
|
|
"clipboard": "^2.0.8",
|
|
"codemirror": "^5.63.3",
|
|
"crelt": "^1.0.5",
|
|
"dropzone": "^5.9.3",
|
|
"markdown-it": "^12.2.0",
|
|
"markdown-it-task-lists": "^2.1.1",
|
|
"prosemirror-commands": "^1.1.12",
|
|
"prosemirror-example-setup": "^1.1.2",
|
|
"prosemirror-markdown": "^1.6.0",
|
|
"prosemirror-model": "^1.15.0",
|
|
"prosemirror-schema-basic": "^1.1.2",
|
|
"prosemirror-schema-list": "^1.1.6",
|
|
"prosemirror-state": "^1.3.4",
|
|
"prosemirror-view": "^1.23.2",
|
|
"sortablejs": "^1.14.0"
|
|
}
|
|
}
|