-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
105 lines (105 loc) · 3.75 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
{
"name": "@jlvandenhout/docusaurus-plugin-docs-editor",
"version": "0.8.1",
"description": "A WYSIWYG editor for your documents",
"main": "lib/index.js",
"repository": "https://github.com/jlvandenhout/docusaurus-plugin-docs-editor",
"author": "Jeroen van den Hout <[email protected]>",
"license": "MIT",
"scripts": {
"build": "docusaurus-plugin build",
"watch": "docusaurus-plugin watch",
"start": "yarn build && env-cmd concurrently \"yarn watch\" \"yarn workspace gatekeeper start\" \"yarn workspace website start\"",
"check": "eslint --cache . && prettier --check . && tsc",
"fix": "eslint --cache --fix . && prettier --write .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@octokit/core": "^3.5.1",
"@octokit/openapi-types": "^11.2.0",
"@octokit/plugin-rest-endpoint-methods": "^5.5.1",
"@octokit/request-error": "^2.1.0",
"@pondorasti/remark-img-links": "^1.0.8",
"@tiptap/core": "^2.0.0-beta.94",
"@tiptap/extension-blockquote": "^2.0.0-beta.15",
"@tiptap/extension-bold": "^2.0.0-beta.15",
"@tiptap/extension-bullet-list": "^2.0.0-beta.15",
"@tiptap/extension-code": "^2.0.0-beta.16",
"@tiptap/extension-code-block": "^2.0.0-beta.17",
"@tiptap/extension-code-block-lowlight": "^2.0.0-beta.33",
"@tiptap/extension-document": "^2.0.0-beta.13",
"@tiptap/extension-dropcursor": "^2.0.0-beta.18",
"@tiptap/extension-hard-break": "^2.0.0-beta.15",
"@tiptap/extension-heading": "^2.0.0-beta.15",
"@tiptap/extension-history": "^2.0.0-beta.15",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.18",
"@tiptap/extension-image": "^2.0.0-beta.15",
"@tiptap/extension-italic": "^2.0.0-beta.15",
"@tiptap/extension-link": "^2.0.0-beta.19",
"@tiptap/extension-list-item": "^2.0.0-beta.14",
"@tiptap/extension-ordered-list": "^2.0.0-beta.15",
"@tiptap/extension-paragraph": "^2.0.0-beta.16",
"@tiptap/extension-text": "^2.0.0-beta.13",
"@tiptap/react": "^2.0.0-beta.55",
"base-64": "^1.0.0",
"clsx": "^1.1.1",
"rehype-highlight": "^5.0.2",
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
"rehype-stringify": "^9.0.3",
"rehype-urls": "^1.1.1",
"remark-extract-frontmatter": "^3.2.0",
"remark-frontmatter": "^4.0.1",
"remark-highlight.js": "^7.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.2",
"remark-unwrap-images": "^3.0.1",
"unified": "^10.1.1",
"urijs": "^1.19.8",
"utf8": "^3.0.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^2.0.0-beta.15",
"@docusaurus/plugin-content-docs": "^2.0.0-beta.15",
"@docusaurus/types": "^2.0.0-beta.15",
"@joshcena/docusaurus-plugin-utils": "^0.1.3",
"@types/eslint": "^8",
"@types/prettier": "^2",
"@types/react": "^17",
"@types/urijs": "^1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"concurrently": "^7.0.0",
"env-cmd": "^10.1.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.29.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": ">=6",
"lint-staged": ">=10",
"pinst": ">=2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"typescript": "^4.5.5"
},
"packageManager": "[email protected]",
"files": [
"/lib"
],
"peerDependencies": {
"@docusaurus/core": "^2.0.0-beta.15",
"@docusaurus/plugin-content-docs": "^2.0.0-beta.15",
"react": "^17.0.2"
},
"workspaces": [
"preview/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,json,yml,md,mdx,css}": "prettier --write"
}
}