-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.53 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
{
"name": "@xyflow/monorepo",
"version": "0.0.0",
"description": "A highly customizable React library for building node-based editors and interactive flow charts",
"repository": "git@github.com:xyflow/xyflow.git",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "turbo run dev --parallel --concurrency 12",
"dev:svelte": "turbo run dev --filter=svelte-examples...",
"dev:react": "turbo run dev --filter=react-examples...",
"dev:vue": "turbo run dev --filter=vue-examples...",
"test:svelte": "pnpm --filter=playwright run test:svelte",
"test:svelte:ui": "pnpm --filter=playwright run test:svelte:ui",
"test:react": "pnpm --filter=playwright run test:react",
"test:react:ui": "pnpm --filter=playwright run test:react:ui",
"test:vue": "pnpm --filter=playwright run test:vue",
"test:vue:ui": "pnpm --filter=playwright run test:vue:ui",
"build:all": "turbo run build",
"build": "turbo run build --filter=./packages/**",
"format": "turbo run format --filter=./packages/**",
"lint": "turbo run lint --filter=./packages/**",
"typecheck": "turbo run typecheck --filter=./packages/**",
"release": "changeset publish",
"clean": "pnpm -r --parallel exec rimraf dist .turbo node_modules"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"concurrently": "^10.0.0",
"rimraf": "^6.1.3",
"turbo": "^2.9.15",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.33.4"
}