-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.82 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
{
"name": "flowexcel",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "concurrently \"pnpm dev\" \"pnpm start:tailwind\"",
"start:tailwind": "tailwindcss -i ./src/styles/tailwind.css -o ./src/styles/tailwind.output.css --watch",
"dev": "vite",
"build:frontend": "tsc -b && vite build",
"build:backend": "node scripts/build-backend.js",
"build": "pnpm build:backend && pnpm build:frontend",
"build:full": "pnpm build:backend && pnpm build:frontend && cd src-tauri && cargo build",
"lint": "eslint .",
"preview": "vite preview",
"test:backend": "cd src-python && uv run python src/test/run_all_tests.py",
"test": "pnpm lint && pnpm test:backend",
"release:draft": "node scripts/release.js --type draft --version",
"release:prerelease": "node scripts/release.js --type prerelease --version",
"release:stable": "node scripts/release.js --type release --version"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/themes": "^3.2.1",
"@reactflow/node-resizer": "^2.2.14",
"@reactflow/node-toolbar": "^1.3.14",
"@tanstack/react-query": "^5.80.7",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-dialog": "~2.2.1",
"@tauri-apps/plugin-fs": "^2.2.1",
"@tauri-apps/plugin-opener": "^2.4.0",
"@types/dagre": "^0.7.52",
"aos": "^2.3.4",
"axios": "^1.9.0",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"dialog": "link:@tauri-apps/api/dialog",
"gsap": "^3.13.0",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.2.0",
"lodash": "^4.17.21",
"motion": "^12.10.0",
"react": "^18.3.1",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.56.2",
"react-i18next": "^15.5.3",
"react-query": "^3.39.3",
"react-resizable": "^3.0.5",
"react-router-dom": "^6.30.0",
"react-toastify": "^11.0.5",
"reactflow": "^11.11.4",
"sonner": "^2.0.5",
"styled-components": "^6.1.17",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^3.4.17",
"uuid": "^11.1.0",
"zod": "^3.24.4",
"zustand": "^5.0.4"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@tauri-apps/cli": "^2.5.0",
"@types/lodash": "^4.17.16",
"@types/node": "^22.15.14",
"@types/react": "^18.3.21",
"@types/react-dom": "^18.3.7",
"@types/react-resizable": "^3.0.8",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^9.1.2",
"eslint": "^9.26.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.15.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.32.0",
"vite": "^5.4.19"
}
}