forked from outline/rich-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.84 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.84 KB
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
{
"name": "@sunsama/rich-markdown-editor",
"description": "A rich text editor with Markdown shortcuts",
"version": "10.6.39",
"main": "dist/lib/index.js",
"typings": "dist/@types/index.d.ts",
"license": "BSD-3-Clause",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"start": "webpack-serve --config example/webpack.config.js --content example/dist",
"build": "tsc --skipLibCheck",
"prepublish": "yarn build"
},
"dependencies": {
"copy-to-clipboard": "^3.0.8",
"core-js": "^3.7.0",
"lodash": "^4.17.11",
"markdown-it-container": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"markdown-it-plugin-underline": "^0.0.1",
"outline-icons": "^1.21.0-3",
"prismjs": "^1.19.0",
"prosemirror-commands": "1.3.0",
"prosemirror-dropcursor": "1.5.0",
"prosemirror-gapcursor": "1.3.0",
"prosemirror-history": "1.3.0",
"prosemirror-inputrules": "^1.1.2",
"prosemirror-keymap": "1.2.0",
"prosemirror-markdown": "1.6.0",
"prosemirror-model": "1.18.1",
"prosemirror-schema-list": "1.2.0",
"prosemirror-state": "1.4.1",
"prosemirror-tables": "1.1.1",
"prosemirror-transform": "1.6.0",
"prosemirror-utils": "^0.9.6",
"prosemirror-view": "1.26.2",
"react-medium-image-zoom": "^3.0.16",
"react-portal": "^4.2.1",
"refractor": "^2.10.1",
"resize-observer-polyfill": "^1.5.1",
"slugify": "^1.4.0",
"smooth-scroll-into-view-if-needed": "^1.1.27",
"styled-components": "^5.1.0",
"typescript": "3.7.5"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/markdown-it": "^10.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/refractor": "^2.8.0",
"@types/styled-components": "^4.4.2",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.19.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-serve": "^2.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sunsama/rich-markdown-editor.git"
},
"keywords": [
"editor",
"markdown",
"text",
"wysiwyg"
],
"author": "Tom Moor <tom.moor@gmail.com>",
"bugs": {
"url": "https://github.com/outline/rich-markdown-editor/issues"
},
"homepage": "https://github.com/sunsama/rich-markdown-editor#readme"
}