static-cms/package.json

247 lines
8.0 KiB
JSON
Raw Normal View History

2016-02-25 00:45:56 -08:00
{
2022-09-30 06:13:47 -06:00
"name": "@simplecms/simple-cms-core",
2022-10-01 13:47:28 -04:00
"version": "0.2.0",
2022-09-30 06:13:47 -06:00
"license": "MIT",
"description": "Simple CMS core application.",
"repository": "https://github.com/SimpleCMS/simple-cms",
"bugs": "https://github.com/SimpleCMS/simple-cms/issues",
"keywords": [
"simple",
"cms",
"core"
],
2018-07-06 18:56:28 -04:00
"scripts": {
2022-09-30 06:13:47 -06:00
"build:esm": "cross-env NODE_ENV=esm babel src --out-dir dist/esm --ignore **/__tests__ --extensions \".js,.jsx,.ts,.tsx\"",
"build:webpack": "webpack",
"build": "cross-env NODE_ENV=production run-s build:esm build:webpack",
"clean": "rimraf dist dev-test/dist",
"develop": "webpack serve --hot",
"format:prettier": "prettier \"{{src,scripts,website}/**/,}*.{js,jsx,ts,tsx,css}\"",
feat: Code Widget + Markdown Widget Internal Overhaul (#2828) * wip - upgrade to slate 0.43 * wip * wip * wip * wip * wip * wip * wip * finish list handling logic * add plugins directory * tests wip * setup testing * wip * add selection commands * finish list testing * stuff * add codemirror * abstract codemirror from slate * wip * wip * wip * wip * wip * wip * wip * wip * wip * codemirror mostly working, some bugs * upgrade to slate 46 * upgrade to slate 47 * wip * wip * progress * wip * mostly working links with surrounding marks * wip * tests passing * add test * fix formatting * update snapshots * close self closing tag in markdown html output * wip - commonmark * hold on commonmark work * all tests passing * fix e2e specs * ignore tests in esm builds * break/backspace plugins wip * finish enter/backspace spec * fix soft break handling * wip - editor component deletion * add insertion points * make insertion points invisible * fix empty mark nodes output to markdown * fix pasting * improve insertion points * add static bottom insertion point * improve click handling at insertion points * restore current table functionality * add paste support for Slate fragments * support cut/copy markdown, paste between rich/raw editor * fix copy paste * wip - paste/select bug fixing * fixed known slate issues * split plugins * fix editor toggles * force text cursor in code widget * wip - reorg plugins * finish markdown control reorg * configure plugin types * quote block adjacent handling with tests * wip * finish quote logic and tests * fix copy paste plugin migration regressions * fix force insert before node * fix trailing insertion point * remove empty headers * codemirror working properly in markdown widget * return focus to codemirror on lang select enter * fix state issues for widgets with local state * wip - vim working, just need to work out distribution * add settings pane * wip - default modes * fix deps * add programming language data * implement linguist langs in code widget * everything built in * remove old registration code, fix focus styling * fix/update linting setup * fix js lint errors * remove stylelint from format script * fix remaining linting errors * fix reducer test failures * chore: update commitlint for worktree support * chore: fix remaining tests * chore: drop unused monaco plugin * chore: remove extraneous global styles rendering * chore: fix failing tests * fix: tests * fix: quote/list nesting (tests still broken) * fix: update quote tests * chore: bring back code widget test config * fix: autofocus * fix: code blocks without the code widget * fix: code editor component state issues * fix: error * fix: add code block test, few fixes * chore: remove notes * fix: [wip] update stateful shortcodes on undo/redo * fix: support code styled links, handle unknown langs * fix: few fixes * fix: autofocus on insert, focus on all clicks * fix: linting * fix: autofocus * fix: update code block fixture * fix: remove unused cypress snapshot plugin * fix: drop node 8 test, add node 12 * fix: use lodash.flatten instead of Array.flat * fix: remove console logs
2019-12-16 12:17:37 -05:00
"format": "run-s \"lint:js --fix --quiet\" \"format:prettier --write\"",
2022-09-30 06:13:47 -06:00
"lint-quiet": "run-p -c --aggregate-output \"lint:* --quiet\"",
"lint:css": "stylelint --ignore-path .gitignore \"{src/**/*.{css,js,jsx,ts,tsx},website/**/*.css}\"",
"lint:format": "prettier \"{{src,scripts,website}/**/,}*.{js,jsx,ts,tsx,css}\" --list-different",
"lint:js": "eslint --color --ignore-path .gitignore \"{{src,scripts,website}/**/,}*.{js,jsx,ts,tsx}\"",
"lint": "run-p -c --aggregate-output \"lint:*\"",
2022-09-30 22:37:16 -04:00
"prepublishOnly": "yarn build",
2022-09-30 06:13:47 -06:00
"start": "run-s clean develop"
2018-07-06 18:56:28 -04:00
},
2022-09-30 06:13:47 -06:00
"module": "dist/esm/index.js",
"main": "dist/simple-cms-core.js",
"files": [
"src/",
"dist/",
"index.d.ts"
],
"types": "index.d.ts",
"browserslist": [
"last 2 Chrome versions",
2022-09-30 06:13:47 -06:00
"last 2 ChromeAndroid versions",
"last 2 Edge versions",
2022-09-30 06:13:47 -06:00
"last 2 Firefox versions",
"last 2 iOS versions",
2022-09-30 06:13:47 -06:00
"last 2 Opera versions",
"last 2 Safari versions"
],
2022-09-30 06:13:47 -06:00
"dependencies": {
"@emotion/babel-preset-css-prop": "11.10.0",
"@emotion/css": "11.10.0",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@hot-loader/react-dom": "17.0.2",
"@iarna/toml": "2.2.5",
"@mui/icons-material": "5.10.6",
"@mui/material": "5.10.6",
"@reduxjs/toolkit": "1.8.5",
"ajv": "6.12.6",
"ajv-errors": "1.0.1",
"ajv-keywords": "3.5.2",
"apollo-cache-inmemory": "1.6.6",
"apollo-client": "2.6.10",
"apollo-link-context": "1.0.20",
"apollo-link-http": "1.5.17",
"array-move": "4.0.0",
"buffer": "^6.0.3",
"clean-stack": "4.2.0",
"codemirror": "5.65.9",
"common-tags": "1.8.1",
"copy-text-to-clipboard": "3.0.1",
"create-react-class": "15.7.0",
"deepmerge": "4.2.2",
"diacritics": "1.3.0",
"dompurify": "2.4.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-babel": "5.3.1",
"fuzzy": "0.1.3",
"globby": "12.2.0",
"gotrue-js": "0.9.29",
"graphql": "15.8.0",
"graphql-tag": "2.12.6",
"gray-matter": "4.0.3",
"history": "4.10.1",
"immer": "9.0.15",
"immutable": "3.8.2",
"ini": "2.0.0",
"is-hotkey": "0.2.0",
"js-base64": "3.7.2",
"js-sha256": "0.9.0",
"jwt-decode": "3.1.2",
"localforage": "1.10.0",
"lodash": "4.17.21",
"mdast-util-definitions": "1.2.5",
"mdast-util-to-string": "1.1.0",
"minimatch": "3.0.4",
"moment": "2.29.4",
"node-polyglot": "2.4.2",
"ol": "6.15.1",
"path-browserify": "1.0.1",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-aria-menubutton": "7.0.3",
"react-codemirror2": "7.2.1",
"react-color": "2.19.3",
"react-datetime": "3.1.1",
"react-dnd": "14.0.5",
"react-dnd-html5-backend": "14.1.0",
"react-dom": "17.0.2",
"react-frame-component": "5.2.3",
"react-hot-loader": "4.13.0",
"react-immutable-proptypes": "2.2.0",
"react-is": "18.2.0",
"react-markdown": "6.0.3",
"react-modal": "3.15.1",
"react-polyglot": "0.7.2",
"react-redux": "8.0.4",
"react-router-dom": "5.3.3",
"react-scroll-sync": "0.9.0",
"react-select": "4.3.1",
"react-sortable-hoc": "2.0.0",
"react-split-pane": "0.1.92",
"react-textarea-autosize": "8.3.4",
"react-toggled": "1.2.7",
"react-topbar-progress-indicator": "4.1.1",
"react-transition-group": "4.4.5",
"react-virtualized-auto-sizer": "1.0.7",
"react-waypoint": "10.3.0",
"react-window": "1.8.7",
"rehype-parse": "6.0.2",
"rehype-remark": "8.1.1",
"rehype-stringify": "7.0.0",
"remark-gfm": "3.0.1",
"remark-parse": "6.0.3",
"remark-rehype": "4.0.1",
"remark-stringify": "6.0.4",
"sanitize-filename": "1.6.3",
"semaphore": "1.1.0",
"slate": "0.47.9",
"slate-base64-serializer": "0.2.115",
"slate-plain-serializer": "0.7.13",
"slate-react": "0.22.10",
"slate-soft-break": "0.9.0",
"stream-browserify": "3.0.0",
"tomlify-j0.4": "3.0.0",
"ts-loader": "9.4.1",
"unified": "7.1.0",
"unist-builder": "1.0.4",
"unist-util-visit-parents": "2.1.2",
"uploadcare-widget": "3.19.0",
"uploadcare-widget-tab-effects": "1.5.0",
"url": "0.11.0",
"url-join": "4.0.1",
"uuid": "3.4.0",
"validate-color": "2.2.1",
"what-input": "5.2.12",
"what-the-diff": "0.6.0",
"yaml": "1.10.2"
},
2016-02-25 00:45:56 -08:00
"devDependencies": {
2022-09-28 20:04:00 -06:00
"@babel/cli": "7.18.10",
"@babel/core": "7.19.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.19.1",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
2022-09-21 19:26:57 -04:00
"@emotion/eslint-plugin": "11.10.0",
2022-09-28 20:04:00 -06:00
"@octokit/rest": "16.43.2",
"@stylelint/postcss-css-in-js": "0.37.3",
"@types/common-tags": "1.8.0",
2022-09-30 06:13:47 -06:00
"@types/history": "4.7.11",
2022-09-28 20:04:00 -06:00
"@types/js-base64": "3.3.1",
"@types/jwt-decode": "2.2.1",
"@types/lodash": "4.14.185",
2022-10-01 13:45:01 -04:00
"@types/minimatch": "^5.1.2",
2022-09-30 06:13:47 -06:00
"@types/react": "17.0.50",
"@types/react-dom": "17.0.17",
"@types/react-router-dom": "5.3.3",
"@types/react-scroll-sync": "0.8.4",
"@types/url-join": "4.0.1",
2022-09-28 20:04:00 -06:00
"@types/uuid": "3.4.10",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"axios": "0.26.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "11.0.0-beta.2",
"babel-loader": "8.2.5",
"babel-plugin-emotion": "11.0.0",
"babel-plugin-inline-json-import": "0.3.2",
"babel-plugin-inline-react-svg": "2.0.1",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-transform-builtin-extend": "1.1.2",
"babel-plugin-transform-define": "2.0.1",
2022-09-28 20:04:00 -06:00
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"cache-me-outside": "0.0.10",
2022-09-30 06:13:47 -06:00
"commonmark": "0.30.0",
"commonmark-spec": "0.30.0",
2022-09-28 20:04:00 -06:00
"cross-env": "7.0.3",
"css-loader": "3.6.0",
"dotenv": "10.0.0",
"eslint": "8.24.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-unicorn": "41.0.1",
"execa": "5.1.1",
"fs-extra": "10.1.0",
"gitlab": "14.2.2",
"http-server": "14.1.1",
"js-yaml": "4.1.0",
"mockserver-client": "5.14.0",
"mockserver-node": "5.14.0",
"ncp": "2.0.0",
"nock": "13.2.9",
"node-fetch": "2.6.7",
"npm-run-all": "4.1.5",
"postcss": "8.4.16",
"postcss-scss": "4.0.5",
"prettier": "2.7.1",
2022-09-30 06:13:47 -06:00
"react-svg-loader": "3.0.3",
2022-09-28 20:04:00 -06:00
"rehype": "7.0.0",
"rimraf": "3.0.2",
"simple-git": "3.14.1",
2022-09-30 06:13:47 -06:00
"slate-hyperscript": "0.13.9",
"source-map-loader": "^4.0.0",
2022-09-28 20:04:00 -06:00
"stylelint": "14.12.1",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"to-string-loader": "1.2.0",
"typescript": "3.9.10",
"unist-util-visit": "1.4.1",
2022-09-30 06:13:47 -06:00
"webpack": "5.74.0",
2022-09-28 20:04:00 -06:00
"webpack-cli": "4.10.0",
2022-09-30 06:13:47 -06:00
"webpack-dev-server": "4.11.1"
2022-09-30 19:27:18 -04:00
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
2022-09-28 20:04:00 -06:00
}
}