UNPKG

pulse-dashboard

Version:

A Next.js Dashboard application for real-time monitoring and historical analysis of Playwright test executions, based on playwright-pulse-report. This component provides the UI for visualizing Playwright test results and can be run as a standalone CLI too

113 lines (112 loc) 3.81 kB
{ "name": "pulse-dashboard", "version": "1.1.4", "private": false, "type": "module", "description": "A Next.js Dashboard application for real-time monitoring and historical analysis of Playwright test executions, based on playwright-pulse-report. This component provides the UI for visualizing Playwright test results and can be run as a standalone CLI tool.", "author": "Arghajit Singha", "license": "Apache-2.0", "homepage": "https://arghajit47.github.io/playwright-pulse-dashboard/", "keywords": [ "react", "nextjs", "playwright", "dashboard", "testing", "test-reporting", "pulse", "pulse-reporter", "pulse-report", "pulse-dashboard", "live-reporter", "live-playwright-reporter", "live-playwright-dashboard", "cli" ], "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "bin": { "pulse-dashboard": "bin/pulse-dashboard.js" }, "files": [ "dist", "bin", ".next", "public", "next.config.ts", "README.md", "LICENSE" ], "scripts": { "dev": "next dev --turbopack -p 9002", "genkit:dev": "genkit start -- tsx src/ai/dev.ts", "genkit:watch": "genkit start -- tsx --watch src/ai/dev.ts", "build:app": "next build", "start": "next start -p 9002", "lint": "next lint", "typecheck": "tsc --noEmit", "clean": "rm -rf dist .next/cache", "build:tsc": "tsc --project tsconfig.build.json", "build:css": "tailwindcss -i ./src/app/globals.css -o ./dist/styles.css --minify", "build": "npm run clean && npm run build:tsc && npm run build:css", "prepublishOnly": "npm run build:app && find .next -name \"*.map\" -type f -delete && npm run build", "postinstall": "echo \"Pulse Dashboard is an extensive visualization of playwright-pulse-report, kindly run the 'npm install @arghajit/playwright-pulse-report@latest' to install pulse-report package and follow the readme file. If already installed please ignore, happy reporting!\"" }, "dependencies": { "@hookform/resolvers": "^4.1.3", "@radix-ui/react-accordion": "^1.2.3", "@radix-ui/react-alert-dialog": "^1.1.6", "@radix-ui/react-avatar": "^1.1.3", "@radix-ui/react-checkbox": "^1.1.4", "@radix-ui/react-dialog": "^1.1.6", "@radix-ui/react-dropdown-menu": "^2.1.6", "@radix-ui/react-label": "^2.1.2", "@radix-ui/react-menubar": "^1.1.6", "@radix-ui/react-popover": "^1.1.6", "@radix-ui/react-progress": "^1.1.2", "@radix-ui/react-radio-group": "^1.2.3", "@radix-ui/react-scroll-area": "^1.2.3", "@radix-ui/react-select": "^2.1.6", "@radix-ui/react-separator": "^1.1.2", "@radix-ui/react-slider": "^1.2.3", "@radix-ui/react-slot": "^1.1.2", "@radix-ui/react-switch": "^1.1.3", "@radix-ui/react-tabs": "^1.1.3", "@radix-ui/react-toast": "^1.2.6", "@radix-ui/react-tooltip": "^1.1.8", "@types/node": "^20", "@types/recharts": "^1.8.29", "ansi-to-html": "^0.7.2", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "date-fns": "^3.6.0", "lucide-react": "^0.475.0", "mime-types": "^3.0.1", "next": "15.2.3", "react": "^18.3.1", "react-day-picker": "^8.10.1", "react-dom": "^18.3.1", "react-hook-form": "^7.54.2", "recharts": "^2.15.1", "tailwind-merge": "^3.0.1", "zod": "^3.24.2" }, "devDependencies": { "@genkit-ai/googleai": "^1.8.0", "@genkit-ai/next": "^1.8.0", "@types/mime-types": "^3.0.1", "autoprefixer": "^10.4.19", "dotenv": "^16.5.0", "genkit": "^1.8.0", "genkit-cli": "^1.8.0", "patch-package": "^8.0.0", "postcss": "^8", "tailwindcss": "^3.4.1", "tailwindcss-animate": "^1.0.7", "typescript": "^5" }, "publishConfig": { "access": "public" } }