-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.48 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
{
"name": "exituseditor",
"private": true,
"version": "1.0.0",
"files": [
"dist"
],
"main": "./dist/exituseditor.js",
"types": "./dist/exituseditor.d.ts",
"scripts": {
"build-prod": "webpack --mode production",
"build-dev": "webpack --mode production --env publicPath=auto",
"dev": "npx webpack-dev-server --mode development --env publicPath=auto",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@tiptap/core": "^2.8.0",
"@tiptap/extension-blockquote": "^2.8.0",
"@tiptap/extension-bold": "^2.8.0",
"@tiptap/extension-bullet-list": "^2.8.0",
"@tiptap/extension-document": "^2.8.0",
"@tiptap/extension-dropcursor": "^2.8.0",
"@tiptap/extension-gapcursor": "^2.8.0",
"@tiptap/extension-hard-break": "^2.8.0",
"@tiptap/extension-history": "^2.8.0",
"@tiptap/extension-horizontal-rule": "^2.8.0",
"@tiptap/extension-italic": "^2.8.0",
"@tiptap/extension-list-item": "^2.8.0",
"@tiptap/extension-ordered-list": "^2.8.0",
"@tiptap/extension-paragraph": "^2.8.0",
"@tiptap/extension-strike": "^2.8.0",
"@tiptap/extension-subscript": "^2.8.0",
"@tiptap/extension-superscript": "^2.8.0",
"@tiptap/extension-table-cell": "^2.8.0",
"@tiptap/extension-table-header": "^2.8.0",
"@tiptap/extension-table-row": "^2.8.0",
"@tiptap/extension-text": "^2.8.0",
"@tiptap/extension-text-align": "^2.8.0",
"@tiptap/extension-underline": "^2.8.0",
"@types/katex": "^0.16.7",
"@types/resize-observer-browser": "^0.1.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.2",
"prosemirror-utils": "^1.2.2",
"raw-loader": "^4.0.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@simonwep/pickr": "^1.9.1",
"@tiptap/pm": "^2.8.0",
"@wiris/mathtype-html-integration-devkit": "^1.17.3",
"katex": "^0.16.11"
}
}