forked from TypeCellOS/BlockNote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 887 Bytes
/
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
{
"name": "@blocknote/example-editor",
"private": true,
"version": "0.11.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --max-warnings 0",
"clean": "rimraf dist"
},
"dependencies": {
"@blocknote/core": "^0.11.0",
"@blocknote/react": "^0.11.0",
"@mantine/core": "^7.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.0",
"y-partykit": "^0.0.0-4c022c1",
"yjs": "^13.6.10"
},
"devDependencies": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.10.0",
"rimraf": "^5.0.5",
"rollup-plugin-webpack-stats": "^0.2.2",
"vite": "^4.4.8",
"vite-plugin-eslint": "^1.8.1"
},
"eslintConfig": {
"extends": [
"../../.eslintrc.js"
]
}
}