wagtail/package.json

124 wiersze
3.2 KiB
JSON
Czysty Zwykły widok Historia

2015-04-25 05:46:15 +00:00
{
"name": "wagtail",
"version": "1.0.0",
"repository": "https://github.com/wagtail/wagtail",
2015-04-25 05:46:15 +00:00
"private": true,
"engines": {
"node": ">=10.0.0"
},
2017-06-07 13:09:09 +00:00
"babel": {
"presets": [
2017-06-12 15:28:57 +00:00
[
"es2015",
{
"modules": false
}
],
2017-06-07 13:09:09 +00:00
"react"
],
2017-06-12 15:28:57 +00:00
"env": {
"test": {
"presets": [
"es2015",
"react"
]
},
"production": {
"plugins": [
[
"transform-react-remove-prop-types",
{
"mode": "remove",
"removeImport": true,
"ignoreFilenames": [
"node_modules"
]
}
]
]
2017-06-12 15:28:57 +00:00
}
}
2017-06-07 13:09:09 +00:00
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
],
"setupFiles": [
"./client/tests/adapter.js",
"./client/tests/stubs.js",
"./client/tests/mock-fetch.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
2015-04-25 05:46:15 +00:00
"devDependencies": {
"@wagtail/stylelint-config-wagtail": "^0.1.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.18.2",
"eslint-config-wagtail": "0.1.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"expose-loader": "^0.7.4",
"gulp": "^4.0.0",
"gulp-autoprefixer": "~4.0.0",
"gulp-cssnano": "^2.1.2",
2015-04-25 05:46:15 +00:00
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "~2.6.1",
"gulp-util": "~3.0.8",
"jest": "^23.6.0",
"npm-run-all": "^4.1.5",
"react-axe": "^3.1.0",
"react-test-renderer": "^16.2.0",
"redux-mock-store": "^1.3.0",
"stylelint": "^10.0.1",
"webpack": "^3.10.0"
},
"dependencies": {
"core-js": "^2.5.3",
2018-02-09 09:23:04 +00:00
"draft-js": "0.10.5",
Upgrade Draftail to v1.2.1. Fix #4985, adds more Markdown shortcuts (#5117) This includes: - [v1.0.0](https://github.com/springload/draftail/releases/tag/v1.0.0) (identical to v0.17.2) - [v1.1.0](https://github.com/springload/draftail/releases/tag/v1.1.0) (contains fix for #4985) - [v1.2.0](https://github.com/springload/draftail/releases/tag/v1.2.0) - [v1.2.1](https://github.com/springload/draftail/releases/tag/v1.2.1) (fixes regression in v1.2.0) Here is the combined CHANGELOG for what's relevant to Wagtail: Bug fixes ~~~~~~~~~ - #4985 – Prevent crash when filtering pasted content whose last block is to be removed (e.g. unsupported image) ([#179](https://github.com/springload/draftail/issues/179)). - Stop unnecessarily calling `onSave` in the editor’s `onBlur` ([#173](https://github.com/springload/draftail/issues/173)). - Prevent crash in `DraftUtils.getEntitySelection`, when the provided entity key isn't valid (undefined, missing) ([#168](https://github.com/springload/draftail/pull/168)). - Fix entity removal and editing not doing anything when the selection is backwards (right to left) ([#168](https://github.com/springload/draftail/pull/168)). - Prevent the editor from crashing when copy-paste filtering removes all of its content (https://github.com/thibaudcolas/draftjs-filters/commit/652750f) New features ~~~~~~~~~~~~ - Add support for Markdown shortcuts for inline styles, e.g. `**` for bold, `_` for italic, etc ([#134](https://github.com/springload/draftail/issues/134), [#187](https://github.com/springload/draftail/pull/187)). View the full list of [keyboard shortcuts](https://www.draftail.org/docs/keyboard-shortcuts). New APIs ~~~~~~~~ - Add [`onFocus`](https://www.draftail.org/docs/api#managing-focus) and [`onBlur`](https://www.draftail.org/docs/api#managing-focus) props to use callbacks on those events. This can be useful for [form validation](https://www.draftail.org/docs/next/form-validation). [#170](https://github.com/springload/draftail/issues/170), [#174](https://github.com/springload/draftail/pull/174), thanks to [@TheSpicyMeatball](https://github.com/TheSpicyMeatball). - Add [`plugins`](https://www.draftail.org/docs/plugins) API to support extensions of the editor using the [draft-js-plugins](https://github.com/draft-js-plugins/draft-js-plugins) architecture ([#83](https://github.com/springload/draftail/issues/83), [#171](https://github.com/springload/draftail/pull/171)). - Add ability to disable or customise the editor toolbar with [`topToolbar`](https://www.draftail.org/docs/customising-toolbars). - Add ability to add a toolbar below the editor with [`bottomToolbar`](https://www.draftail.org/docs/customising-toolbars). - Add data reset parameter to `DraftUtils.resetBlockWithType()`. - Enable list continuation on Enter for custom `*-list-item` blocks. All that’s required is for the block type to end with `-list-item`. None of those API additions will be usable within Wagtail (at least without hacks) until corresponding rich text features APIs are built to allow their configuration. The last 2 additions would already be usable but they would only be useful when leveraging the other APIs.
2019-03-21 20:29:26 +00:00
"draftail": "^1.2.1",
"element-closest": "^2.0.2",
"focus-trap-react": "^3.1.0",
"prop-types": "^15.6.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.6",
2019-08-21 16:21:36 +00:00
"react-streamfield": "^0.9.5",
"react-transition-group": "^1.1.3",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^2.0.3"
2015-04-25 05:46:15 +00:00
},
"scripts": {
"build": "npm run gulp:prod:build && npm run webpack:prod:build",
"dist": "NODE_ENV=production npm run build",
"watch": "npm-run-all --parallel gulp:dev:watch webpack:dev:watch",
"start": "npm run watch",
"gulp:dev:watch": "gulp watch",
"gulp:prod:build": "gulp build",
"webpack:dev:watch": "webpack --config ./client/webpack/dev.config.js",
"webpack:prod:build": "webpack --config ./client/webpack/prod.config.js",
"lint:js": "eslint --max-warnings 16 ./client",
"lint:css": "stylelint **/*.scss",
"lint": "npm run lint:js && npm run lint:css",
"test": "npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --coverage"
2015-04-25 05:46:15 +00:00
}
2015-04-25 05:48:06 +00:00
}