-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.36 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.36 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@workflow/web",
"description": "Workflow Observability UI",
"version": "5.0.0-beta.2",
"type": "module",
"private": false,
"files": [
"build",
"server.js",
"server.d.ts",
"package.json"
],
"exports": {
"./server": {
"types": "./server.d.ts",
"default": "./server.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vercel/workflow.git",
"directory": "packages/web"
},
"scripts": {
"dev": "react-router dev",
"build": "react-router build",
"clean": "rm -rf build .react-router",
"start": "node server.js",
"lint": "biome check",
"format": "biome format --write",
"test": "vitest run"
},
"dependencies": {
"express": "^4.21.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@biomejs/biome": "catalog:",
"@radix-ui/react-alert-dialog": "1.1.5",
"@radix-ui/react-checkbox": "1.1.4",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.6",
"@radix-ui/react-label": "2.1.7",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-slot": "1.1.1",
"@radix-ui/react-switch": "1.1.2",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "1.2.8",
"@react-router/dev": "7.13.1",
"@react-router/express": "7.13.1",
"@react-router/node": "7.13.1",
"@tailwindcss/vite": "4",
"@types/express": "^5",
"@types/node": "catalog:",
"@types/react": "19",
"@types/react-dom": "19",
"@workflow/core": "workspace:*",
"@workflow/errors": "workspace:*",
"@workflow/utils": "workspace:*",
"@workflow/web-shared": "workspace:*",
"@workflow/world": "workspace:*",
"@workflow/world-vercel": "workspace:*",
"@xyflow/react": "12.10.1",
"cbor-x": "^1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cross-env": "^7.0.3",
"date-fns": "4.1.0",
"geist": "^1.7.0",
"isbot": "^5",
"lucide-react": "0.575.0",
"next-themes": "0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-router": "7.13.1",
"shiki": "4.0.0",
"sonner": "2.0.7",
"tailwind-merge": "3.5.0",
"tailwindcss": "4",
"typescript": "catalog:",
"vite": "^6",
"vitest": "^3",
"jsdom": "^26"
}
}