Files
metabuilder/workflowui/package.json
johndoe6345789 9a6d93ef44 fix(deps): HIGH priority testing library and Storybook standardization
All HIGH priority fixes from comprehensive dependency audit (Jan 23, 2026):

Testing Libraries (4 packages):
- pastebin: @testing-library/react v14 → v16, jest-dom 6.1 → 6.6
- redux/hooks-async: @testing-library/react v14 → v16 (added), jest-dom 6.6 (added)
- workflow: jest 29.0.0 → 29.7.0
- codegen/spark-tools: vitest 3.0.9 → 4.0.16

Storybook Configuration (2 packages):
- storybook: Standardized addon versions (react-vite, test, essentials, interactions all 8.6.15)
  - Fixed React type mismatch (@types/react 19 → 18 to match runtime 18.3.1)
- workflowui: Fixed React type mismatch (@types/react 19 → 18, @types/react-dom 19 → 18)

Verification: npm install succeeds (1197 packages, 0 vulnerabilities)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-24 00:13: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": "^2.5.2",
"axios": "^1.7.7",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dexie": "^4.0.8",
"lodash-es": "^4.17.21",
"next": "^16.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"socket.io-client": "^4.8.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.6.0",
"@storybook/react": "^8.6.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.5",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"concurrently": "^9.1.0",
"jest": "^29.7.0",
"typescript": "~5.9.3"
}
}