forked from outline/rich-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.06 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "rich-markdown-editor",
"description": "A rich text editor with Markdown shortcuts",
"version": "11.21.3",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "BSD-3-Clause",
"funding": "https://github.com/sponsors/outline",
"scripts": {
"test": "jest",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet",
"start": "start-storybook -p 6006",
"build": "tsc",
"preversion": "yarn build",
"watch": "yarn tsc-watch",
"build-storybook": "build-storybook"
},
"serve": {
"open": true,
"static": "example/dist"
},
"jest": {
"testPathIgnorePatterns": [
"dist"
]
},
"dependencies": {
"copy-to-clipboard": "^3.0.8",
"fuzzy-search": "^3.2.1",
"gemoji": "6.x",
"lodash": "^4.17.11",
"markdown-it": "^12.2.0",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.0",
"outline-icons": "^1.38.1",
"prosemirror-commands": "^1.1.6",
"prosemirror-dropcursor": "^1.3.3",
"prosemirror-gapcursor": "^1.1.5",
"prosemirror-history": "^1.1.3",
"prosemirror-inputrules": "^1.1.3",
"prosemirror-keymap": "^1.1.4",
"prosemirror-markdown": "^1.5.2",
"prosemirror-model": "^1.13.3",
"prosemirror-schema-list": "^1.1.2",
"prosemirror-state": "^1.3.4",
"prosemirror-tables": "^1.1.1",
"prosemirror-transform": "1.2.5",
"prosemirror-utils": "^0.9.6",
"prosemirror-view": "1.18.1",
"react-medium-image-zoom": "^3.1.3",
"react-portal": "^4.2.1",
"refractor": "^3.3.1",
"resize-observer-polyfill": "^1.5.1",
"slugify": "^1.4.0",
"smooth-scroll-into-view-if-needed": "^1.1.29"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.12.7",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@types/fuzzy-search": "^2.1.1",
"@types/jest": "^26.0.20",
"@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": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"source-map-loader": "^0.2.4",
"styled-components": "^5.2.1",
"ts-loader": "^6.2.1",
"tsc-watch": "^4.2.9",
"typescript": "4.1.6"
},
"resolutions": {
"markdown-it": "^12.2.0",
"prosemirror-transform": "1.2.5",
"yargs-parser": "^15.0.1"
},
"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"
}