forked from TypeCellOS/BlockNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.26 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.26 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@playwright/test": "^1.25.0",
"lerna": "^5.4.0",
"patch-package": "^6.4.7",
"eslint": "^8.22.0"
},
"scripts": {
"start": "lerna run --stream --scope @blocknote/example-editor dev",
"start:built": "npx serve examples/editor/dist",
"test:updateSnaps": "docker run --rm -e RUN_IN_DOCKER=true --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.25.0-focal npx playwright test --update-snapshots",
"build": "lerna run --stream build --concurrency 1",
"lint": "lerna run --stream lint",
"bootstrap": "lerna bootstrap --ci -- --force && patch-package",
"install-new-packages": "lerna bootstrap -- --force && patch-package",
"playwright": "npx playwright test",
"install-playwright": "npx playwright install --with-deps",
"deploy": "lerna publish -- --access public",
"prepublishOnly": "npm run build && cp README.md packages/core/README.md && cp README.md packages/react/README.md",
"postpublish": "rm -rf packages/core/README.md && rm -rf packages/react/README.md"
},
"overrides": {
"react": "18.2.0",
"react-dom": "18.2.0",
"prosemirror-model": "1.18.3"
}
}