Rebase.
This commit is contained in:
parent
9ab25c0434
commit
ec0bdbfd88
63
package.json
63
package.json
@ -5,10 +5,12 @@
|
|||||||
"main": "dist/cms.js",
|
"main": "dist/cms.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "webpack-dev-server -d --config webpack.dev.js",
|
"start": "webpack-dev-server -d --config webpack.dev.js",
|
||||||
"test": "jest",
|
"test": "jest --coverage",
|
||||||
"test:watch": "jest --watch",
|
"test:watch": "jest --watch",
|
||||||
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.js --display-error-details",
|
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.js --display-error-details",
|
||||||
"build:scripts": "cross-env NODE_ENV=production webpack --config webpack.cli.js",
|
"build:scripts": "cross-env NODE_ENV=production webpack --config webpack.cli.js",
|
||||||
|
"contributors:add": "all-contributors add",
|
||||||
|
"contributors:generate": "all-contributors generate",
|
||||||
"storybook": "start-storybook -p 9001",
|
"storybook": "start-storybook -p 9001",
|
||||||
"storybook-build": "build-storybook -o dist",
|
"storybook-build": "build-storybook -o dist",
|
||||||
"lint": "npm run lint:js & npm run lint:css",
|
"lint": "npm run lint:js & npm run lint:css",
|
||||||
@ -37,7 +39,11 @@
|
|||||||
"moduleNameMapper": {
|
"moduleNameMapper": {
|
||||||
"^.+\\.(png|eot|woff|woff2|ttf|svg|gif)$": "<rootDir>/__mocks__/fileLoaderMock.js",
|
"^.+\\.(png|eot|woff|woff2|ttf|svg|gif)$": "<rootDir>/__mocks__/fileLoaderMock.js",
|
||||||
"^.+\\.s?css$": "<rootDir>/__mocks__/styleLoaderMock.js"
|
"^.+\\.s?css$": "<rootDir>/__mocks__/styleLoaderMock.js"
|
||||||
}
|
},
|
||||||
|
"mapCoverage": true,
|
||||||
|
"coverageReporters": ["lcov"],
|
||||||
|
"collectCoverageFrom": [ "src/**/*.js" ],
|
||||||
|
"coveragePathIgnorePatterns": [ "/__tests__/" ]
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"netlify",
|
"netlify",
|
||||||
@ -49,6 +55,9 @@
|
|||||||
"author": "Netlify",
|
"author": "Netlify",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@kadira/storybook": "^1.36.0",
|
||||||
|
"all-contributors-cli": "^4.4.0",
|
||||||
|
"autoprefixer": "^6.3.3",
|
||||||
"babel": "^6.5.2",
|
"babel": "^6.5.2",
|
||||||
"babel-cli": "^6.18.0",
|
"babel-cli": "^6.18.0",
|
||||||
"babel-core": "^6.23.1",
|
"babel-core": "^6.23.1",
|
||||||
@ -58,29 +67,28 @@
|
|||||||
"babel-preset-es2015": "^6.22.0",
|
"babel-preset-es2015": "^6.22.0",
|
||||||
"babel-preset-react": "^6.23.0",
|
"babel-preset-react": "^6.23.0",
|
||||||
"babel-preset-stage-1": "^6.22.0",
|
"babel-preset-stage-1": "^6.22.0",
|
||||||
|
"babel-plugin-transform-builtin-extend": "^1.1.0",
|
||||||
"babel-runtime": "^6.23.0",
|
"babel-runtime": "^6.23.0",
|
||||||
"cross-env": "^5.0.2",
|
"cross-env": "^5.0.2",
|
||||||
"css-loader": "^0.28.4",
|
"css-loader": "^0.28.7",
|
||||||
|
"deep-equal": "^1.0.1",
|
||||||
"enzyme": "^2.4.1",
|
"enzyme": "^2.4.1",
|
||||||
"eslint": "^3.7.1",
|
"eslint": "^3.7.1",
|
||||||
"eslint-config-netlify": "github:netlify/eslint-config-netlify",
|
"eslint-config-netlify": "github:netlify/eslint-config-netlify",
|
||||||
"eslint-import-resolver-webpack": "^0.8.3",
|
"eslint-import-resolver-webpack": "^0.8.3",
|
||||||
"exports-loader": "^0.6.4",
|
"exports-loader": "^0.6.4",
|
||||||
"extract-text-webpack-plugin": "^2.1.2",
|
"extract-text-webpack-plugin": "^3.0.0",
|
||||||
"file-loader": "^0.11.2",
|
"file-loader": "^1.1.4",
|
||||||
"gotrue-js": "^0.9.11",
|
|
||||||
"identity-obj-proxy": "^3.0.0",
|
"identity-obj-proxy": "^3.0.0",
|
||||||
"imports-loader": "^0.7.1",
|
"imports-loader": "^0.7.1",
|
||||||
"jest": "^20.0.4",
|
"jest": "^20.0.4",
|
||||||
"jest-cli": "^20.0.4",
|
"jest-cli": "^20.0.4",
|
||||||
"lint-staged": "^3.3.1",
|
"lint-staged": "^3.3.1",
|
||||||
"node-sass": "^3.10.0",
|
|
||||||
"npm-check": "^5.2.3",
|
"npm-check": "^5.2.3",
|
||||||
"postcss-cssnext": "^2.7.0",
|
"postcss-cssnext": "^2.7.0",
|
||||||
"postcss-import": "^10.0.0",
|
"postcss-import": "^10.0.0",
|
||||||
"postcss-loader": "^2.0.5",
|
"postcss-loader": "^2.0.5",
|
||||||
"react-addons-test-utils": "^15.4.2",
|
"react-addons-test-utils": "^15.4.2",
|
||||||
"sass-loader": "^6.0.5",
|
|
||||||
"style-loader": "^0.18.2",
|
"style-loader": "^0.18.2",
|
||||||
"stylefmt": "^4.3.1",
|
"stylefmt": "^4.3.1",
|
||||||
"stylelint": "^7.9.0",
|
"stylelint": "^7.9.0",
|
||||||
@ -89,25 +97,21 @@
|
|||||||
"stylelint-declaration-block-order": "^0.1.0",
|
"stylelint-declaration-block-order": "^0.1.0",
|
||||||
"stylelint-declaration-use-variable": "^1.6.0",
|
"stylelint-declaration-use-variable": "^1.6.0",
|
||||||
"url-loader": "^0.5.9",
|
"url-loader": "^0.5.9",
|
||||||
"webpack": "^2.6.1",
|
"webpack": "^3.6.0",
|
||||||
"webpack-dev-server": "^2.4.5",
|
"webpack-dev-server": "^2.9.1",
|
||||||
"webpack-merge": "^4.1.0",
|
"webpack-merge": "^4.1.0",
|
||||||
"webpack-postcss-tools": "^1.1.1"
|
"webpack-postcss-tools": "^1.1.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@kadira/storybook": "^1.36.0",
|
|
||||||
"autoprefixer": "^6.3.3",
|
|
||||||
"babel-plugin-transform-builtin-extend": "^1.1.0",
|
|
||||||
"classnames": "^2.2.5",
|
"classnames": "^2.2.5",
|
||||||
"dateformat": "^1.0.12",
|
"create-react-class": "^15.6.0",
|
||||||
"deep-equal": "^1.0.1",
|
|
||||||
"fuzzy": "^0.1.1",
|
"fuzzy": "^0.1.1",
|
||||||
|
"gotrue-js": "^0.9.11",
|
||||||
|
"gray-matter": "^3.0.6",
|
||||||
"history": "^2.1.2",
|
"history": "^2.1.2",
|
||||||
"immutability-helper": "^2.0.0",
|
|
||||||
"immutable": "^3.7.6",
|
"immutable": "^3.7.6",
|
||||||
"js-base64": "^2.1.9",
|
"js-base64": "^2.1.9",
|
||||||
"js-yaml": "^3.7.0",
|
"js-yaml": "^3.10.0",
|
||||||
"json-loader": "^0.5.4",
|
|
||||||
"jwt-decode": "^2.1.0",
|
"jwt-decode": "^2.1.0",
|
||||||
"localforage": "^1.4.2",
|
"localforage": "^1.4.2",
|
||||||
"lodash": "^4.13.1",
|
"lodash": "^4.13.1",
|
||||||
@ -115,36 +119,28 @@
|
|||||||
"mdast-util-definitions": "^1.2.2",
|
"mdast-util-definitions": "^1.2.2",
|
||||||
"mdast-util-to-string": "^1.0.4",
|
"mdast-util-to-string": "^1.0.4",
|
||||||
"moment": "^2.11.2",
|
"moment": "^2.11.2",
|
||||||
"node-sass": "^3.10.0",
|
|
||||||
"normalize.css": "^4.2.0",
|
"normalize.css": "^4.2.0",
|
||||||
"preliminaries": "1.1.0",
|
"prop-types": "^15.5.10",
|
||||||
"preliminaries-parser-toml": "1.1.0",
|
|
||||||
"preliminaries-parser-yaml": "1.1.0",
|
|
||||||
"prismjs": "^1.5.1",
|
|
||||||
"react": "^15.1.0",
|
"react": "^15.1.0",
|
||||||
"react-addons-css-transition-group": "^15.3.1",
|
|
||||||
"react-autosuggest": "^7.0.1",
|
"react-autosuggest": "^7.0.1",
|
||||||
"react-datetime": "^2.6.0",
|
"react-datetime": "^2.6.0",
|
||||||
"react-dom": "^15.1.0",
|
"react-dom": "^15.1.0",
|
||||||
"react-frame-component": "^1.0.3",
|
"react-frame-component": "^1.0.3",
|
||||||
"react-hot-loader": "^3.0.0-beta.7",
|
"react-hot-loader": "^3.0.0-beta.7",
|
||||||
"react-immutable-proptypes": "^2.1.0",
|
"react-immutable-proptypes": "^2.1.0",
|
||||||
"react-lazy-load": "^3.0.3",
|
|
||||||
"react-portal": "^2.2.1",
|
|
||||||
"react-pure-render": "^1.0.2",
|
|
||||||
"react-redux": "^4.4.0",
|
"react-redux": "^4.4.0",
|
||||||
"react-router": "^2.5.1",
|
"react-router": "^2.5.1",
|
||||||
"react-router-redux": "^4.0.5",
|
"react-router-redux": "^4.0.5",
|
||||||
"react-sidebar": "^2.2.1",
|
"react-sidebar": "^2.2.1",
|
||||||
"react-simple-dnd": "^0.1.2",
|
"react-simple-dnd": "^0.1.2",
|
||||||
"react-sortable": "^1.2.0",
|
"react-sortable": "^1.2.0",
|
||||||
"react-split-pane": "^0.1.57",
|
"react-split-pane": "^0.1.66",
|
||||||
"react-textarea-autosize": "^4.3.2",
|
"react-toolbox": "^2.0.0-beta.12",
|
||||||
"react-toolbox": "^1.2.1",
|
|
||||||
"react-topbar-progress-indicator": "^1.0.0",
|
"react-topbar-progress-indicator": "^1.0.0",
|
||||||
"react-waypoint": "^3.1.3",
|
"react-transition-group": "^2.2.1",
|
||||||
|
"react-waypoint": "^7.1.0",
|
||||||
"redux": "^3.3.1",
|
"redux": "^3.3.1",
|
||||||
"redux-notifications": "^2.1.1",
|
"redux-notifications": "^4.0.1",
|
||||||
"redux-optimist": "^0.0.2",
|
"redux-optimist": "^0.0.2",
|
||||||
"redux-thunk": "^1.0.3",
|
"redux-thunk": "^1.0.3",
|
||||||
"rehype-parse": "^3.1.0",
|
"rehype-parse": "^3.1.0",
|
||||||
@ -153,12 +149,13 @@
|
|||||||
"remark-parse": "^3.0.1",
|
"remark-parse": "^3.0.1",
|
||||||
"remark-rehype": "^2.0.0",
|
"remark-rehype": "^2.0.0",
|
||||||
"remark-stringify": "^3.0.1",
|
"remark-stringify": "^3.0.1",
|
||||||
|
"sanitize-filename": "^1.6.1",
|
||||||
"semaphore": "^1.0.5",
|
"semaphore": "^1.0.5",
|
||||||
"slate": "^0.21.0",
|
"slate": "^0.21.0",
|
||||||
"slate-edit-list": "^0.7.1",
|
"slate-edit-list": "^0.7.1",
|
||||||
"slate-edit-table": "^0.10.1",
|
"slate-edit-table": "^0.10.1",
|
||||||
"slate-soft-break": "^0.3.0",
|
"slate-soft-break": "^0.3.0",
|
||||||
"slug": "^0.9.1",
|
"toml-j0.4": "^1.1.1",
|
||||||
"unified": "^6.1.4",
|
"unified": "^6.1.4",
|
||||||
"unist-builder": "^1.0.2",
|
"unist-builder": "^1.0.2",
|
||||||
"unist-util-visit-parents": "^1.1.1",
|
"unist-util-visit-parents": "^1.1.1",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user