-
-
Notifications
You must be signed in to change notification settings - Fork 694
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.25 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.25 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": "root",
"type": "module",
"devDependencies": {
"@nx/js": "^21.6.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"concurrently": "9.1.2",
"eslint": "^8.57.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.32.0",
"glob": "^10.5.0",
"nx": "^21.6.5",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"serve": "14.2.4",
"typescript": "^5.9.3",
"vitest": "^2.1.9",
"wait-on": "8.0.3"
},
"pnpm": {
"ignoredBuiltDependencies": [
"sharp",
"workerd"
],
"onlyBuiltDependencies": [
"@parcel/watcher",
"@sentry/cli",
"@tailwindcss/oxide",
"better-sqlite3",
"canvas",
"esbuild",
"msw",
"nx",
"unrs-resolver"
]
},
"packageManager": "pnpm@10.23.0+sha512.21c4e5698002ade97e4efe8b8b4a89a8de3c85a37919f957e7a0f30f38fbc5bbdd05980ffe29179b2fb6e6e691242e098d945d1601772cad0fef5fb6411e2a4b",
"private": true,
"scripts": {
"dev": "nx run @blocknote/example-editor:dev",
"dev:docs": "nx run docs:dev",
"build": "nx run-many --target=build",
"build:clean": "pnpm run clean && pnpm run gen && pnpm run clean && pnpm run build",
"build:site": "nx run-many --target=build:site",
"clean": "nx run-many --target=clean",
"deploy": "nx release --skip-publish",
"gen": "nx run @blocknote/dev-scripts:gen",
"install-playwright": "cd tests && pnpx playwright install --with-deps",
"e2e": "concurrently --success=first -r --kill-others \"pnpm run start -L\" \"wait-on http://localhost:3000 && cd tests && pnpm exec playwright test $PLAYWRIGHT_CONFIG\"",
"e2e:updateSnaps": "concurrently --success=first -r --kill-others \"pnpm run start -L\" \"wait-on http://localhost:3000 && cd tests && pnpm run test:updateSnaps\"",
"lint": "nx run-many --target=lint",
"postpublish": "rm -rf packages/core/README.md && rm -rf packages/react/README.md",
"prebuild": "cp README.md packages/core/README.md && cp README.md packages/react/README.md",
"prestart": "pnpm run build",
"start": "serve playground/dist -c ../serve.json",
"test": "nx run-many --target=test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,md}\""
}
}