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
63 lines (63 loc) · 2.33 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.33 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
61
62
63
{
"name": "root",
"type": "module",
"devDependencies": {
"@nx/js": "^21.4.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"concurrently": "9.1.2",
"eslint": "^8.22.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-import": "^2.31.0",
"glob": "^10.3.10",
"nx": "^21.4.1",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0.6.11",
"serve": "14.2.4",
"typescript": "^5.3.3",
"vitest": "^2.0.3",
"wait-on": "8.0.3"
},
"pnpm": {
"ignoredBuiltDependencies": [
"sharp",
"workerd"
],
"onlyBuiltDependencies": [
"@parcel/watcher",
"@sentry/cli",
"@tailwindcss/oxide",
"better-sqlite3",
"canvas",
"esbuild",
"msw",
"nx",
"unrs-resolver"
],
"patchedDependencies": {
"y-prosemirror": "patches/y-prosemirror.patch"
}
},
"packageManager": "[email protected]+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"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}\""
}
}