-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.28 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
{
"name": "nexus-workflow-studio",
"version": "2.0.0",
"license": "MIT",
"packageManager": "bun@1.3.10",
"engines": {
"bun": ">=1.3.10",
"node": ">=20"
},
"scripts": {
"start:local": "bash ./scripts/start.sh",
"start:docker": "bash ./scripts/start.sh --docker",
"collab:server": "bun scripts/collab-server.ts",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --cache --cache-location .eslintcache --max-warnings=0",
"lint:fix": "eslint . --fix --cache --cache-location .eslintcache",
"format": "bun run lint:fix",
"test": "bun test",
"test:store": "bun test src/store/__tests__",
"test:lib": "bun test src/lib/__tests__",
"test:nodes": "bun test src/nodes",
"typecheck": "tsc --noEmit",
"check": "bun run typecheck && bun run lint && bun run test",
"docker:up": "docker compose up --build",
"docker:bun": "docker compose up --build",
"docker:down": "docker compose down"
},
"dependencies": {
"@dagrejs/dagre": "^2.0.4",
"@hocuspocus/provider": "^3.4.4",
"@hocuspocus/server": "^3.4.4",
"@hookform/resolvers": "^5.2.2",
"@uiw/react-md-editor": "^4.0.11",
"@xyflow/react": "^12.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"lodash.throttle": "^4.1.1",
"lucide-react": "^0.575.0",
"nanoid": "^5.1.6",
"next": "16.1.7",
"next-themes": "^0.4.6",
"prismjs": "^1.30.0",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-dropzone": "^15.0.0",
"react-hook-form": "^7.71.2",
"react-simple-code-editor": "^0.14.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"@hocuspocus/provider": "^3.4.4",
"@hocuspocus/server": "^3.4.4",
"yjs": "^13.6.30",
"zod": "^4.3.6",
"zundo": "^2.3.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/js-yaml": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"bun-types": "^1.3.10",
"eslint": "^9",
"eslint-config-next": "16.1.7",
"shadcn": "^3.8.5",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}