forked from outline/rich-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.31 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
133
134
135
136
{
"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 'src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"start": "start-storybook -p 6006",
"build": "tsc",
"preversion": "npm run build",
"watch": "npm run tsc-watch",
"build-storybook": "build-storybook"
},
"serve": {
"open": true,
"static": "example/dist"
},
"jest": {
"testPathIgnorePatterns": [
"dist"
]
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"fuzzy-search": "^3.2.1",
"gemoji": "7.x",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.2",
"outline-icons": "^1.43.1",
"prosemirror-commands": "^1.3.0",
"prosemirror-dropcursor": "^1.5.0",
"prosemirror-gapcursor": "^1.3.1",
"prosemirror-history": "^1.3.0",
"prosemirror-inputrules": "^1.2.0",
"prosemirror-keymap": "^1.2.0",
"prosemirror-markdown": "^1.9.3",
"prosemirror-model": "^1.18.1",
"prosemirror-schema-list": "^1.2.1",
"prosemirror-state": "^1.4.1",
"prosemirror-tables": "npm:prosemirror-tables-contently",
"prosemirror-transform": "1.6.0",
"prosemirror-utils": "^0.9.6",
"prosemirror-view": "1.27.0",
"react-medium-image-zoom": "^3.1.3",
"react-portal": "^4.2.2",
"refractor": "^4.7.0",
"resize-observer-polyfill": "^1.5.1",
"slugify": "^1.6.5",
"smooth-scroll-into-view-if-needed": "^1.1.33"
},
"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.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/react": "^6.5.9",
"@types/fuzzy-search": "^2.1.2",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.5",
"@types/markdown-it-emoji": "^2.0.2",
"@types/prosemirror-commands": "^1.0.4",
"@types/prosemirror-dropcursor": "^1.0.3",
"@types/prosemirror-gapcursor": "^1.0.4",
"@types/prosemirror-history": "^1.0.3",
"@types/prosemirror-inputrules": "^1.0.4",
"@types/prosemirror-keymap": "^1.0.4",
"@types/prosemirror-markdown": "^1.5.6",
"@types/prosemirror-model": "^1.16.2",
"@types/prosemirror-schema-list": "^1.0.3",
"@types/prosemirror-state": "^1.3.0",
"@types/prosemirror-view": "^1.23.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/refractor": "^3.0.2",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-loader": "^4.0.0",
"styled-components": "^5.3.5",
"ts-loader": "^9.3.1",
"tsc-watch": "^5.0.3",
"typescript": "4.7.4"
},
"overrides": {
"markdown-it": "^13.0.1",
"prosemirror-transform": "1.6.0",
"yargs-parser": "^15.0.1",
"prosemirror-tables": "npm:prosemirror-tables-contently"
},
"repository": {
"type": "git",
"url": "git+https://github.com/outline/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/outline/rich-markdown-editor#readme"
}