-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.99 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
{
"name": "lobby-editor",
"version": "1.0.30",
"description": "Lobby's open source editor.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"files": [
"./dist/"
],
"moduleResolution": "node",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"lint": "eslint . --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lobbylabs/lobby-editor.git"
},
"keywords": [],
"author": "Lobby",
"license": "MIT",
"bugs": {
"url": "https://github.com/lobbylabs/lobby-editor/issues"
},
"homepage": "https://beta.lobby.so/lobby/quick-start",
"devDependencies": {
"@atomico/rollup-plugin-sizes": "^1.1.4",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^18.6.1",
"@types/react": "^18.0.12",
"@types/sanitize-html": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"autoprefixer": "^10.4.8",
"eslint": "^8.21.0",
"eslint-plugin-react": "^7.30.1",
"node-sass": "^7.0.1",
"postcss": "^8.4.14",
"rollup": "^2.77.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@tiptap/core": "2.0.0-beta.174",
"@tiptap/extension-blockquote": "^2.0.0-beta.26",
"@tiptap/extension-bold": "^2.0.0-beta.26",
"@tiptap/extension-bubble-menu": "^2.0.0-beta.56",
"@tiptap/extension-bullet-list": "^2.0.0-beta.26",
"@tiptap/extension-code-block-lowlight": "^2.0.0-beta.68",
"@tiptap/extension-document": "^2.0.0-beta.15",
"@tiptap/extension-dropcursor": "^2.0.0-beta.25",
"@tiptap/extension-gapcursor": "^2.0.0-beta.34",
"@tiptap/extension-heading": "^2.0.0-beta.26",
"@tiptap/extension-history": "^2.0.0-beta.21",
"@tiptap/extension-image": "^2.0.0-beta.27",
"@tiptap/extension-italic": "^2.0.0-beta.26",
"@tiptap/extension-link": "^2.0.0-beta.37",
"@tiptap/extension-list-item": "^2.0.0-beta.20",
"@tiptap/extension-mention": "^2.0.0-beta.96",
"@tiptap/extension-ordered-list": "^2.0.0-beta.27",
"@tiptap/extension-paragraph": "^2.0.0-beta.23",
"@tiptap/extension-placeholder": "^2.0.0-beta.48",
"@tiptap/extension-table": "^2.0.0-beta.48",
"@tiptap/extension-table-cell": "^2.0.0-beta.20",
"@tiptap/extension-table-header": "^2.0.0-beta.22",
"@tiptap/extension-table-row": "^2.0.0-beta.19",
"@tiptap/extension-text": "^2.0.0-beta.15",
"@tiptap/react": "2.0.0-beta.114",
"lowlight": "^2.6.1",
"sanitize-html": "^2.7.1",
"tslib": "^2.4.0"
},
"peerDependencies": {
"@tiptap/core": "2.0.0-beta.174",
"@tiptap/react": "2.0.0-beta.114",
"react": "^18.1.0"
}
}