forked from outline/rich-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.16 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
94
95
96
97
98
{
"name": "rich-markdown-editor",
"description": "A rich text editor with Markdown shortcuts",
"version": "10.4.0",
"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",
"prepublish": "yarn build"
},
"dependencies": {
"copy-to-clipboard": "^3.0.8",
"lodash": "^4.17.11",
"markdown-it-container": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"outline-icons": "^1.19.1",
"prismjs": "^1.19.0",
"prosemirror-commands": "^1.1.4",
"prosemirror-dropcursor": "^1.3.2",
"prosemirror-gapcursor": "^1.1.5",
"prosemirror-history": "^1.1.3",
"prosemirror-inputrules": "^1.1.2",
"prosemirror-keymap": "^1.1.4",
"prosemirror-markdown": "^1.4.4",
"prosemirror-model": "^1.10.0",
"prosemirror-schema-list": "^1.1.2",
"prosemirror-state": "^1.3.3",
"prosemirror-tables": "^1.0.0",
"prosemirror-utils": "^0.9.6",
"prosemirror-view": "^1.14.11",
"react-medium-image-zoom": "^3.0.16",
"react-portal": "^4.2.1",
"refractor": "^2.10.1",
"slugify": "^1.4.0",
"smooth-scroll-into-view-if-needed": "^1.1.27",
"styled-components": "^5.0.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/markdown-it": "^10.0.1",
"@types/prosemirror-commands": "^1.0.1",
"@types/prosemirror-dropcursor": "^1.0.0",
"@types/prosemirror-gapcursor": "^1.0.1",
"@types/prosemirror-history": "^1.0.1",
"@types/prosemirror-inputrules": "^1.0.2",
"@types/prosemirror-keymap": "^1.0.1",
"@types/prosemirror-markdown": "^1.0.3",
"@types/prosemirror-model": "^1.7.2",
"@types/prosemirror-schema-list": "^1.0.1",
"@types/prosemirror-state": "^1.2.4",
"@types/prosemirror-view": "^1.11.4",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@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/outline/rich-markdown-editor.git"
},
"keywords": [
"editor",
"markdown",
"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"
}