Files
metabuilder/workflowui/package.json
johndoe6345789 b874ea8eb4 chore: cleanup documentation and migrate remaining MUI dependencies
- Remove outdated documentation files from root and docs/
- Clean up generated workflow and audit documentation
- Complete fakemui migration in workflowui
- Remove remaining SCSS modules
- Update package dependencies across all packages
- Reorganize documentation structure

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-23 16:50:25 +00:00

53 lines
1.6 KiB
JSON

{
"name": "workflowui",
"version": "1.0.0",
"description": "Visual workflow editor UI - Modern n8n-like interface for MetaBuilder workflows",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build || true",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"db:init": "node scripts/init-db.js",
"db:migrate": "node scripts/migrate-db.js",
"backend": "python backend/server.py",
"dev:all": "concurrently \"npm run dev\" \"npm run backend\"",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@metabuilder/core-hooks": "file:../../redux/core-hooks",
"@metabuilder/api-clients": "file:../../redux/api-clients",
"@reduxjs/toolkit": "^1.9.7",
"axios": "^1.6.0",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"dexie": "^3.2.4",
"lodash-es": "^4.17.21",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"socket.io-client": "^4.5.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.5.0",
"@storybook/react": "^7.5.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.0.0",
"@types/lodash-es": "^4.17.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"concurrently": "^8.2.0",
"jest": "^29.7.0",
"typescript": "^5.2.0"
}
}