static-cms/package.json

178 lines
5.5 KiB
JSON
Raw Normal View History

2016-02-25 00:45:56 -08:00
{
2016-10-21 17:02:05 -07:00
"name": "netlify-cms",
2017-08-20 16:11:32 -04:00
"version": "0.4.6",
2016-02-25 00:45:56 -08:00
"description": "Netlify CMS lets content editors work on structured content stored in git",
"main": "dist/cms.js",
2016-02-25 00:45:56 -08:00
"scripts": {
"start": "webpack-dev-server -d --config webpack.dev.js",
2016-11-11 12:06:56 +01:00
"test": "jest",
"test:watch": "jest --watch",
"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",
2016-07-06 19:51:43 -03:00
"storybook": "start-storybook -p 9001",
"storybook-build": "build-storybook -o dist",
2016-10-05 12:10:25 +02:00
"lint": "npm run lint:js & npm run lint:css",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "stylelint 'src/**/*.css'",
2016-10-05 12:28:00 +02:00
"lint:css:fix": "stylefmt --recursive src/",
2016-10-05 15:06:38 +02:00
"lint:staged": "lint-staged",
"deps": "npm-check -s",
2017-07-26 22:16:27 -04:00
"deps:update": "npm-check -u",
"prepublishOnly": "npm run build"
2016-02-25 00:45:56 -08:00
},
"lint-staged": {
2016-10-05 12:34:58 +02:00
"*.js": [
"eslint --fix",
2016-10-07 16:44:33 +02:00
"jest --findRelatedTests",
"git add"
]
},
"files": [
"dist/",
"README.md"
],
"pre-commit": "lint:staged",
"jest": {
"moduleNameMapper": {
"^.+\\.(png|eot|woff|woff2|ttf|svg|gif)$": "<rootDir>/__mocks__/fileLoaderMock.js",
"^.+\\.s?css$": "<rootDir>/__mocks__/styleLoaderMock.js"
}
},
2016-02-25 00:45:56 -08:00
"keywords": [
"netlify",
2016-11-11 17:28:56 -08:00
"cms",
"content editing",
"static site generators",
"jamstack"
2016-02-25 00:45:56 -08:00
],
"author": "Netlify",
"license": "MIT",
"devDependencies": {
2016-12-30 17:08:37 -02:00
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
2017-03-01 11:07:49 -08:00
"babel-core": "^6.23.1",
2017-06-14 15:11:44 -07:00
"babel-jest": "^20.0.3",
2017-06-12 17:59:58 -07:00
"babel-loader": "^7.0.0",
2016-07-05 13:48:52 -03:00
"babel-plugin-lodash": "^3.2.0",
2017-03-01 11:07:49 -08:00
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-1": "^6.22.0",
"babel-runtime": "^6.23.0",
"cross-env": "^5.0.2",
2017-06-12 17:59:58 -07:00
"css-loader": "^0.28.4",
2016-09-22 21:52:43 +02:00
"enzyme": "^2.4.1",
2016-10-06 12:07:45 +02:00
"eslint": "^3.7.1",
2016-10-06 17:03:30 +02:00
"eslint-config-netlify": "github:netlify/eslint-config-netlify",
"eslint-import-resolver-webpack": "^0.8.3",
2017-03-01 11:07:49 -08:00
"exports-loader": "^0.6.4",
2017-06-12 17:59:58 -07:00
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"identity-obj-proxy": "^3.0.0",
2017-06-12 17:59:58 -07:00
"imports-loader": "^0.7.1",
2017-06-14 15:11:44 -07:00
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
2017-03-01 11:07:49 -08:00
"lint-staged": "^3.3.1",
2016-09-15 18:53:24 +02:00
"node-sass": "^3.10.0",
2016-10-05 15:06:38 +02:00
"npm-check": "^5.2.3",
"postcss-cssnext": "^2.7.0",
2017-06-12 17:59:58 -07:00
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.5",
2017-03-01 11:07:49 -08:00
"react-addons-test-utils": "^15.4.2",
2017-06-12 17:59:58 -07:00
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
2016-10-05 12:28:00 +02:00
"stylefmt": "^4.3.1",
2017-03-01 11:07:49 -08:00
"stylelint": "^7.9.0",
2016-10-05 12:10:25 +02:00
"stylelint-config-css-modules": "^0.1.0",
"stylelint-config-standard": "^13.0.2",
"stylelint-declaration-block-order": "^0.1.0",
2016-10-05 16:39:08 +02:00
"stylelint-declaration-use-variable": "^1.6.0",
2017-06-12 17:59:58 -07:00
"url-loader": "^0.5.9",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0",
"webpack-postcss-tools": "^1.1.1"
2016-05-30 16:55:32 -07:00
},
"dependencies": {
"@kadira/storybook": "^1.36.0",
2016-10-10 16:35:42 -03:00
"autoprefixer": "^6.3.3",
"babel-plugin-transform-builtin-extend": "^1.1.0",
2017-04-11 18:41:28 -04:00
"classnames": "^2.2.5",
2016-09-09 17:15:58 -03:00
"dateformat": "^1.0.12",
"deep-equal": "^1.0.1",
"fuzzy": "^0.1.1",
"hast-util-to-html": "^3.0.0",
2017-04-10 20:06:54 +01:00
"history": "^2.1.2",
2016-09-15 18:53:24 +02:00
"immutability-helper": "^2.0.0",
"immutable": "^3.7.6",
2016-07-19 17:11:22 -03:00
"js-base64": "^2.1.9",
2016-12-15 16:19:37 -02:00
"js-yaml": "^3.7.0",
"json-loader": "^0.5.4",
"jwt-decode": "^2.1.0",
2016-07-05 13:48:52 -03:00
"localforage": "^1.4.2",
"lodash": "^4.13.1",
"markup-it": "^2.0.0",
2016-09-15 18:53:24 +02:00
"material-design-icons": "^3.0.1",
"mdast-util-to-hast": "^2.4.0",
2016-10-10 16:10:55 -03:00
"moment": "^2.11.2",
2017-01-21 16:56:49 -08:00
"netlify-auth-js": "^0.5.5",
2016-09-15 18:53:24 +02:00
"normalize.css": "^4.2.0",
2017-04-09 20:05:00 +01:00
"preliminaries": "1.1.0",
"preliminaries-parser-toml": "1.1.0",
"preliminaries-parser-yaml": "1.1.0",
"prismjs": "^1.5.1",
2016-12-27 23:13:31 -08:00
"prosemirror-commands": "^0.16.0",
"prosemirror-history": "^0.16.0",
"prosemirror-inputrules": "^0.16.0",
"prosemirror-keymap": "^0.16.0",
"prosemirror-markdown": "^0.16.0",
"prosemirror-model": "^0.16.0",
"prosemirror-schema-basic": "^0.16.0",
"prosemirror-schema-list": "^0.16.0",
"prosemirror-schema-table": "^0.16.0",
"prosemirror-state": "^0.16.0",
"prosemirror-transform": "^0.16.0",
"prosemirror-view": "^0.16.0",
2016-10-10 16:10:55 -03:00
"react": "^15.1.0",
2016-09-05 17:24:24 -03:00
"react-addons-css-transition-group": "^15.3.1",
"react-autosuggest": "^7.0.1",
2016-09-13 16:00:24 -03:00
"react-datetime": "^2.6.0",
"react-dom": "^15.1.0",
"react-frame-component": "^1.0.3",
2017-06-12 17:59:58 -07:00
"react-hot-loader": "^3.0.0-beta.7",
"react-immutable-proptypes": "^2.1.0",
"react-lazy-load": "^3.0.3",
"react-portal": "^2.2.1",
2016-10-10 16:35:42 -03:00
"react-pure-render": "^1.0.2",
"react-redux": "^4.4.0",
"react-router": "^2.5.1",
"react-router-redux": "^4.0.5",
"react-sidebar": "^2.2.1",
"react-simple-dnd": "^0.1.2",
2016-10-30 16:01:10 -07:00
"react-sortable": "^1.2.0",
"react-split-pane": "^0.1.57",
"react-textarea-autosize": "^4.3.2",
"react-toolbox": "^1.2.1",
"react-topbar-progress-indicator": "^1.0.0",
"react-waypoint": "^3.1.3",
2016-10-10 16:35:42 -03:00
"redux": "^3.3.1",
"redux-notifications": "^2.1.1",
"redux-optimist": "^0.0.2",
2016-10-10 16:35:42 -03:00
"redux-thunk": "^1.0.3",
"remark": "6",
"remark-html": "^6.0.0",
2016-08-02 23:25:45 -03:00
"selection-position": "^1.0.0",
2016-09-04 19:55:14 +02:00
"semaphore": "^1.0.5",
2016-09-28 11:05:11 +02:00
"slate": "^0.14.14",
"slate-drop-or-paste-images": "^0.2.0",
2017-05-09 09:36:40 +02:00
"slug": "^0.9.1",
2016-10-30 16:01:10 -07:00
"textarea-caret-position": "^0.1.1",
"unist-util-visit": "^1.1.1",
"uuid": "^2.0.3",
"whatwg-fetch": "^1.0.0"
},
"optionalDependencies": {
"fsevents": "^1.0.14"
2016-02-25 00:45:56 -08:00
}
}