-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 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
{
"name": "n8n-visual-workflow-builder",
"version": "0.1.0",
"description": "A visual workflow builder interface for n8n, inspired by Node-RED and Zapier",
"main": "src/index.tsx",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit"
},
"keywords": [
"n8n",
"workflow",
"visual",
"automation",
"no-code",
"react",
"typescript"
],
"author": "Workflow Builder Team",
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.8.3",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"@vitejs/plugin-react": "^4.1.1",
"zustand": "^4.4.6",
"axios": "^1.6.0",
"socket.io-client": "^4.7.2",
"monaco-editor": "^0.44.0",
"@monaco-editor/react": "^4.6.0",
"react-hotkeys-hook": "^4.4.1",
"clsx": "^2.0.0",
"tailwind-merge": "^2.0.0",
"lucide-react": "^0.294.0"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"tailwindcss": "^3.3.5",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31"
}
}