forked from outline/rich-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "rich-html-editor",
"description": "A rich text editor with Markdown shortcuts built on Slate",
"version": "0.0.3",
"main": "lib/index.js",
"license": "BSD-3-Clause",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn eslint src",
"start": "webpack-serve --config example/webpack.config.js --content example/dist",
"build": "babel src/ -d lib/",
"prepublish": "yarn build"
},
"dependencies": {
"@wikifactory/slate-edit-blockquote": "^0.7.1",
"@wikifactory/slate-edit-code": "^0.16.0",
"@wikifactory/slate-trailing-block": "^0.6.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"boundless-arrow-key-navigation": "^1.1.0",
"copy-to-clipboard": "^3.0.8",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-prettier": "^2.6.0",
"golery-slate-edit-list": "^0.18.0-golery.4",
"golery-slate-prism": "0.6.0-golery.2",
"immutable": "^3.8.2",
"lodash": "^4.17.11",
"outline-icons": "^1.6.0",
"prismjs": "^1.15.0",
"react": "^16.6.0",
"react-autosize-textarea": "^6.0.0",
"react-dom": "^16.6.0",
"react-keydown": "^1.9.7",
"react-medium-image-zoom": "^3.0.10",
"react-portal": "^4.1.4",
"slate": "^0.44.10",
"slate-collapse-on-escape": "^0.8.1",
"cyber-slate-drop-or-paste-images": "^0.0.1",
"slate-html-serializer": "^0.7.34",
"slate-paste-linkify": "^0.7.0",
"slate-react": "^0.21.15",
"slate-schema-violations": "^0.1.39",
"slugify": "^1.3.0",
"styled-components": "^4.1.3"
},
"peerDependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0",
"styled-components": "^4.1.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.4",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-styled-components": "^1.1.7",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"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-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.68.0",
"prettier": "^1.11.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.14",
"webpack-serve": "^0.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/outline/rich-markdown-editor.git"
},
"keywords": [
"editor",
"markdown",
"slate",
"text",
"wysiwyg"
],
"author": "Tom Moor <[email protected]>",
"bugs": {
"url": "https://github.com/outline/rich-markdown-editor/issues"
},
"homepage": "https://github.com/outline/rich-markdown-editor#readme"
}