mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
be3423a16e
Avoided updating markdown-it package to 14 for now since it would cause bundle size to inflate. Don't think ESBuild is properly tree shaking "entities" sub package which inflates size. (Copied this message from december deps update).
136 lines
3.8 KiB
JSON
136 lines
3.8 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build:css:dev": "sass ./resources/sass:./public/dist --embed-sources",
|
|
"build:css:watch": "sass ./resources/sass:./public/dist --watch --embed-sources",
|
|
"build:css:production": "sass ./resources/sass:./public/dist -s compressed",
|
|
"build:js:dev": "node dev/build/esbuild.js",
|
|
"build:js:watch": "chokidar --initial \"./resources/**/*.js\" \"./resources/**/*.mjs\" -c \"npm run build:js:dev\"",
|
|
"build:js:production": "node dev/build/esbuild.js production",
|
|
"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",
|
|
"lint": "eslint \"resources/**/*.js\" \"resources/**/*.mjs\"",
|
|
"fix": "eslint --fix \"resources/**/*.js\" \"resources/**/*.mjs\""
|
|
},
|
|
"devDependencies": {
|
|
"@lezer/generator": "^1.5.1",
|
|
"chokidar-cli": "^3.0",
|
|
"esbuild": "^0.20",
|
|
"eslint": "^8.55.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-plugin-import": "^2.29.0",
|
|
"livereload": "^0.9.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"punycode": "^2.3.1",
|
|
"sass": "^1.69.5"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/commands": "^6.3.2",
|
|
"@codemirror/lang-css": "^6.2.1",
|
|
"@codemirror/lang-html": "^6.4.7",
|
|
"@codemirror/lang-javascript": "^6.2.1",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/lang-markdown": "^6.2.3",
|
|
"@codemirror/lang-php": "^6.0.1",
|
|
"@codemirror/lang-xml": "^6.0.2",
|
|
"@codemirror/language": "^6.9.3",
|
|
"@codemirror/legacy-modes": "^6.3.3",
|
|
"@codemirror/state": "^6.3.3",
|
|
"@codemirror/theme-one-dark": "^6.1.2",
|
|
"@codemirror/view": "^6.22.2",
|
|
"@lezer/highlight": "^1.2.0",
|
|
"@ssddanbrown/codemirror-lang-smarty": "^1.0.0",
|
|
"@ssddanbrown/codemirror-lang-twig": "^1.0.0",
|
|
"codemirror": "^6.0.1",
|
|
"idb-keyval": "^6.2.1",
|
|
"markdown-it": "^13.0.2",
|
|
"markdown-it-task-lists": "^2.1.1",
|
|
"snabbdom": "^3.5.1",
|
|
"sortablejs": "^1.15.1"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": "airbnb-base",
|
|
"ignorePatterns": [
|
|
"resources/**/*-stub.js"
|
|
],
|
|
"overrides": [],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4
|
|
],
|
|
"arrow-parens": [
|
|
"error",
|
|
"as-needed"
|
|
],
|
|
"padded-blocks": [
|
|
"error",
|
|
{
|
|
"blocks": "never",
|
|
"classes": "always"
|
|
}
|
|
],
|
|
"object-curly-spacing": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"space-before-function-paren": [
|
|
"error",
|
|
{
|
|
"anonymous": "never",
|
|
"named": "never",
|
|
"asyncArrow": "always"
|
|
}
|
|
],
|
|
"import/prefer-default-export": "off",
|
|
"no-plusplus": [
|
|
"error",
|
|
{
|
|
"allowForLoopAfterthoughts": true
|
|
}
|
|
],
|
|
"arrow-body-style": "off",
|
|
"no-restricted-syntax": "off",
|
|
"no-continue": "off",
|
|
"prefer-destructuring": "off",
|
|
"class-methods-use-this": "off",
|
|
"no-param-reassign": "off",
|
|
"no-console": [
|
|
"warn",
|
|
{
|
|
"allow": [
|
|
"error",
|
|
"warn"
|
|
]
|
|
}
|
|
],
|
|
"no-new": "off",
|
|
"max-len": [
|
|
"error",
|
|
{
|
|
"code": 110,
|
|
"tabWidth": 4,
|
|
"ignoreUrls": true,
|
|
"ignoreComments": false,
|
|
"ignoreRegExpLiterals": true,
|
|
"ignoreStrings": true,
|
|
"ignoreTemplateLiterals": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|