-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
{
"name": "hocuspocus-server",
"homepage": "https://github.com/TypeCellOS/BlockNote",
"private": true,
"license": "MPL-2.0",
"version": "0.0.1",
"files": [
"dist",
"types",
"src"
],
"type": "module",
"scripts": {
"dev": "vite-node src/index.ts",
"build": "tsc && vite build",
"start": "node dist/blocknote-xl-ai-server.js",
"lint": "eslint src --max-warnings 0",
"clean": "rimraf dist && rimraf types"
},
"dependencies": {
"@blocknote/core": "^0.25.1",
"@blocknote/react": "^0.25.1",
"@blocknote/server-util": "^0.25.0",
"@hocuspocus/common": "2.15.2",
"@hocuspocus/extension-sqlite": "^2.15.2",
"@hocuspocus/server": "^2.15.2",
"@hono/node-server": "^1.0.8",
"@hono/node-ws": "^1.0.8",
"@tiptap/core": "2.11.5",
"hono": "^4.7.2",
"prosemirror-state": "^1.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"y-prosemirror": "^1.2.15",
"y-protocols": "1.0.6",
"yjs": "^13.6.23"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.10.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "^2.7.1",
"rimraf": "^5.0.5",
"rollup-plugin-webpack-stats": "^0.2.2",
"typescript": "^5.3.3",
"undici": "^6",
"vite": "^5.3.4",
"vite-node": "^2.1.6",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-externalize-deps": "^0.8.0",
"vitest": "^2.0.3"
},
"eslintConfig": {
"extends": [
".eslintrc.cjs"
]
}
}