This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/package.json

210 lines
6.2 KiB
JSON
Raw Normal View History

2016-02-27 21:53:11 +00:00
{
2017-11-09 08:20:22 +00:00
"name": "Outline",
"private": true,
2016-02-27 21:53:11 +00:00
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
2018-01-04 05:35:13 +00:00
"build:analyze": "NODE_ENV=production webpack --config webpack.config.prod.js --json > stats.json",
2016-02-27 21:53:11 +00:00
"build": "npm run clean && npm run build:webpack",
2017-11-10 23:24:29 +00:00
"start": "NODE_ENV=production node index.js",
2017-11-14 06:59:45 +00:00
"dev": "NODE_ENV=development nodemon --watch server index.js",
2017-07-16 21:52:57 +00:00
"lint": "npm run lint:flow && npm run lint:js",
2017-10-26 05:49:04 +00:00
"lint:js": "eslint app",
2017-07-16 21:52:57 +00:00
"lint:flow": "flow",
2016-06-04 22:52:19 +00:00
"deploy": "git push heroku master",
"heroku-postbuild": "npm run build && npm run sequelize:migrate",
"sequelize:create-migration": "sequelize migration:create",
"sequelize:migrate": "sequelize db:migrate",
2017-10-26 05:49:04 +00:00
"test": "npm run test:app && npm run test:server",
"test:app": "jest",
"test:server": "jest --config=server/.jestconfig.json --runInBand --forceExit",
2017-04-27 04:47:03 +00:00
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"verbose": false,
"roots": [
"app"
],
"moduleNameMapper": {
"^.*[.](s?css|css)$": "<rootDir>/__mocks__/styleMock.js",
"^.*[.](gif|ttf|eot|svg)$": "<rootDir>/__test__/fileMock.js"
},
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"moduleDirectories": [
"node_modules"
],
"modulePaths": [
"app"
],
"setupFiles": [
2017-11-18 21:19:01 +00:00
"raf/polyfill",
"<rootDir>/setupJest.js",
2017-11-18 21:19:01 +00:00
"<rootDir>/__mocks__/window.js"
]
2016-02-27 21:53:11 +00:00
},
2016-08-22 06:44:18 +00:00
"engines": {
2018-02-11 07:03:13 +00:00
"node": ">= 8.0"
2016-08-22 06:44:18 +00:00
},
2016-02-27 21:53:11 +00:00
"repository": {
"type": "git",
2017-11-09 08:20:22 +00:00
"url": "git+ssh://git@github.com/outline/outline.git"
2016-02-27 21:53:11 +00:00
},
"dependencies": {
"@tommoor/slate-drop-or-paste-images": "^0.8.1",
"@tommoor/slate-edit-code": "^0.13.3",
2017-10-19 07:49:22 +00:00
"aws-sdk": "^2.135.0",
"autotrack": "^2.4.1",
2017-04-27 05:18:36 +00:00
"babel-core": "^6.24.1",
2018-01-04 00:29:01 +00:00
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
2017-04-27 05:18:36 +00:00
"babel-plugin-lodash": "^3.2.11",
2017-07-12 05:00:50 +00:00
"babel-plugin-styled-components": "^1.1.7",
2018-01-04 04:08:43 +00:00
"babel-plugin-syntax-dynamic-import": "^6.18.0",
2017-04-29 22:52:05 +00:00
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
2017-04-29 22:52:05 +00:00
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
2016-08-15 12:59:42 +00:00
"babel-polyfill": "^6.13.0",
2017-04-29 22:52:05 +00:00
"babel-preset-env": "^1.4.0",
2016-08-22 06:52:28 +00:00
"babel-preset-react": "6.11.1",
"babel-preset-react-hmre": "1.1.1",
"babel-regenerator-runtime": "6.5.0",
"bcrypt": "1.0.3",
"boundless-arrow-key-navigation": "^1.0.4",
"boundless-popover": "^1.0.4",
2016-07-25 05:44:44 +00:00
"bugsnag": "^1.7.0",
2017-12-19 04:47:48 +00:00
"bull": "^3.3.7",
"cancan": "3.1.0",
"copy-to-clipboard": "^3.0.6",
2017-09-10 20:27:15 +00:00
"css-loader": "^0.28.7",
"debug": "2.2.0",
2017-04-27 05:18:36 +00:00
"dotenv": "^4.0.0",
2017-07-29 22:06:17 +00:00
"emoji-regex": "^6.5.1",
2018-01-04 00:29:01 +00:00
"eslint": "^4.14.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
2018-01-04 05:35:13 +00:00
"eslint-plugin-jsx-a11y": "5.1.1",
2018-01-04 00:29:01 +00:00
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.2",
"fbemitter": "^2.1.1",
2018-01-04 00:29:01 +00:00
"file-loader": "^1.1.6",
2017-05-10 06:14:24 +00:00
"flow-typed": "^2.1.2",
2017-11-29 06:46:26 +00:00
"fs-extra": "^4.0.2",
"history": "3.0.0",
"html-webpack-plugin": "2.17.0",
"http-errors": "1.4.0",
2017-12-03 07:14:27 +00:00
"immutable": "^3.8.2",
"imports-loader": "0.6.5",
2017-05-12 00:23:56 +00:00
"invariant": "^2.2.2",
"isomorphic-fetch": "2.2.1",
"js-cookie": "^2.1.4",
2017-10-02 01:36:44 +00:00
"js-search": "^1.4.2",
"json-loader": "0.5.4",
"jsonwebtoken": "7.0.1",
2017-04-27 05:25:52 +00:00
"koa": "^2.2.0",
"koa-bodyparser": "4.2.0",
"koa-compress": "2.0.0",
"koa-connect": "1.0.0",
"koa-convert": "1.2.0",
"koa-helmet": "3.2.0",
2017-04-27 05:25:52 +00:00
"koa-jwt": "^3.2.1",
"koa-logger": "^2.0.1",
"koa-mount": "^3.0.0",
2018-02-11 06:58:22 +00:00
"koa-onerror": "^4.0.0",
"koa-router": "7.0.1",
"koa-sendfile": "2.0.0",
"koa-static": "^4.0.1",
2017-07-16 18:47:48 +00:00
"localforage": "^1.5.0",
2017-04-27 05:18:36 +00:00
"lodash": "^4.17.4",
"mobx": "^3.1.9",
"mobx-react": "^4.1.8",
"mobx-react-devtools": "^4.2.11",
"moment": "2.13.0",
"node-dev": "3.1.0",
"nodemailer": "^4.4.0",
2017-09-10 20:27:15 +00:00
"normalize.css": "^7.0.0",
"normalizr": "2.0.1",
"oy-vey": "^0.10.0",
2017-04-27 05:18:36 +00:00
"pg": "^6.1.5",
"pg-hstore": "2.3.2",
2017-07-09 17:59:33 +00:00
"polished": "1.2.1",
"pui-react-tooltip": "^8.3.3",
2017-04-27 05:18:36 +00:00
"query-string": "^4.3.4",
"randomstring": "1.1.5",
2016-09-15 03:50:59 +00:00
"raw-loader": "^0.5.1",
"react": "^16.2.0",
2017-12-14 07:17:08 +00:00
"react-avatar-editor": "^10.3.0",
2017-11-10 21:42:33 +00:00
"react-dom": "^16.1.0",
"react-dropzone": "4.2.1",
2017-10-22 23:33:10 +00:00
"react-helmet": "^5.2.0",
Slate editor (#38) * WIP: Slate editor * WIP * Focus at start / end working * ah ha * Super basic floating toolbar * Nested list editing * Pulling more logic into plugins * inline code markdown * Backspace at end of code block should remove mark * Ensure there is always an empty line at editor end * Add keyboard shortcuts for bold, italic, underline * Add strikethrough shortcode and toolbar * Toolbar to declarative Fixed paragraph styling Removed unused stuffs * Super basic link editing * Split Toolbar, now possible to edit and remove links * Add new link to selection from toolbar working * Ensure toolbar doesn't extend off screen * Fix minor js issues, disable formatting of document title * Boom, icons * Remove codemirror, fix MD parsing issues * CMD+S now saves inplace * Add --- shortcut for horizontal rule * Improved styling for link editor * Add header anchors in readOnly * More readable core text color * Restored image file uploading :tada: * Add support for inline md syntax, ** __ etc * Centered * Flooooow * Checklist support * Upgrade edit list plugin * Finally. Allow keydown within rich textarea * Update Markdown serializer * Cleanup, remove async editor loading * Editor > MarkdownEditor Fixed unsaved changes warning triggered when all changes are saved * MOAR typing * Combine edit and view * Fixed checkboxes still editable in readOnly * wip * Breadcrumb Restored scroll * Move document scene actions to menu * Added: Support for code blocks, syntax highlighting * Cleanup * > styled component * Prevent CMD+Enter from adding linebreak * Show image uploading in layout activity indicator * Upgrade editor deps * Improve link toolbar. Only one scenario where it's not working now
2017-05-18 02:36:31 +00:00
"react-keydown": "^1.7.3",
2017-11-29 06:46:26 +00:00
"react-markdown": "^3.0.2",
"react-medium-image-zoom": "^3.0.10",
2017-11-10 21:42:33 +00:00
"react-modal": "^3.1.2",
"react-portal": "^4.0.0",
2017-11-12 18:55:13 +00:00
"react-router-dom": "^4.2.0",
2017-12-04 00:50:50 +00:00
"react-waypoint": "^7.3.1",
2016-08-21 18:12:24 +00:00
"redis": "^2.6.2",
"redis-lock": "^0.1.0",
2017-02-10 05:48:12 +00:00
"rimraf": "^2.5.4",
Slate editor (#38) * WIP: Slate editor * WIP * Focus at start / end working * ah ha * Super basic floating toolbar * Nested list editing * Pulling more logic into plugins * inline code markdown * Backspace at end of code block should remove mark * Ensure there is always an empty line at editor end * Add keyboard shortcuts for bold, italic, underline * Add strikethrough shortcode and toolbar * Toolbar to declarative Fixed paragraph styling Removed unused stuffs * Super basic link editing * Split Toolbar, now possible to edit and remove links * Add new link to selection from toolbar working * Ensure toolbar doesn't extend off screen * Fix minor js issues, disable formatting of document title * Boom, icons * Remove codemirror, fix MD parsing issues * CMD+S now saves inplace * Add --- shortcut for horizontal rule * Improved styling for link editor * Add header anchors in readOnly * More readable core text color * Restored image file uploading :tada: * Add support for inline md syntax, ** __ etc * Centered * Flooooow * Checklist support * Upgrade edit list plugin * Finally. Allow keydown within rich textarea * Update Markdown serializer * Cleanup, remove async editor loading * Editor > MarkdownEditor Fixed unsaved changes warning triggered when all changes are saved * MOAR typing * Combine edit and view * Fixed checkboxes still editable in readOnly * wip * Breadcrumb Restored scroll * Move document scene actions to menu * Added: Support for code blocks, syntax highlighting * Cleanup * > styled component * Prevent CMD+Enter from adding linebreak * Show image uploading in layout activity indicator * Upgrade editor deps * Improve link toolbar. Only one scenario where it's not working now
2017-05-18 02:36:31 +00:00
"safestart": "1.1.0",
2017-12-26 13:02:26 +00:00
"sequelize": "4.28.6",
"sequelize-cli": "^2.7.0",
"sequelize-encrypted": "0.1.0",
2018-02-14 05:03:38 +00:00
"slate": "^0.32.4",
2017-12-03 07:14:27 +00:00
"slate-collapse-on-escape": "^0.6.0",
"slate-edit-list": "^0.11.2",
2018-02-14 05:03:38 +00:00
"slate-md-serializer": "^2.0.0",
2017-12-03 07:14:27 +00:00
"slate-paste-linkify": "^0.5.0",
"slate-plain-serializer": "0.5.4",
2017-12-03 07:14:27 +00:00
"slate-prism": "^0.4.0",
"slate-react": "^0.11.4",
2017-12-03 07:14:27 +00:00
"slate-trailing-block": "^0.4.0",
"slug": "0.9.1",
2016-08-21 18:12:24 +00:00
"string-hash": "^1.1.0",
"string-replace-to-array": "^1.0.3",
2017-09-10 20:27:15 +00:00
"style-loader": "^0.18.2",
2017-11-12 23:56:23 +00:00
"styled-components": "^2.2.3",
"styled-components-breakpoint": "^1.0.1",
2017-10-22 23:33:10 +00:00
"styled-components-grid": "^1.0.0-preview.15",
2017-10-27 05:42:08 +00:00
"styled-normalize": "^2.2.1",
2018-01-04 00:29:01 +00:00
"url-loader": "^0.6.2",
"uuid": "2.0.2",
"validator": "5.2.0",
"webpack": "3.10.0",
"webpack-manifest-plugin": "^1.3.2"
2016-05-24 05:20:16 +00:00
},
"devDependencies": {
"babel-jest": "22",
2017-05-23 06:51:16 +00:00
"enzyme": "2.8.2",
"enzyme-to-json": "^1.5.1",
"fetch-test-server": "^1.1.0",
2017-07-09 17:59:33 +00:00
"flow-bin": "^0.49.1",
"identity-obj-proxy": "^3.0.0",
"jest-cli": "22",
2017-04-27 05:25:52 +00:00
"koa-webpack-dev-middleware": "1.4.5",
"koa-webpack-hot-middleware": "1.0.3",
2017-04-27 04:47:03 +00:00
"lint-staged": "^3.4.0",
2017-04-27 05:25:52 +00:00
"nodemon": "1.11.0",
2017-11-10 21:42:33 +00:00
"prettier": "1.8.2",
"raf": "^3.4.0",
"react-test-renderer": "^16.1.0"
2016-02-27 21:53:11 +00:00
}
2018-01-07 00:10:05 +00:00
}