Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
58 lines
1.8 KiB
JSON
58 lines
1.8 KiB
JSON
{
|
|
"name": "madbase-control-plane-ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:run": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:e2e:headed": "playwright test --headed",
|
|
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
"test:all": "npm run test:run && npm run test:integration && npm run test:e2e"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-router-dom": "^6.22.0",
|
|
"@tanstack/react-query": "^5.17.0",
|
|
"axios": "^1.6.5",
|
|
"@mui/material": "^5.15.0",
|
|
"@mui/icons-material": "^5.15.0",
|
|
"@mui/x-data-grid": "^6.19.0",
|
|
"@emotion/react": "^11.11.0",
|
|
"@emotion/styled": "^11.11.0",
|
|
"recharts": "^2.10.0",
|
|
"date-fns": "^3.0.0",
|
|
"zustand": "^4.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react": "^4.2.0",
|
|
"typescript": "^5.3.0",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^1.2.0",
|
|
"@vitest/ui": "^1.2.0",
|
|
"@testing-library/react": "^14.1.0",
|
|
"@testing-library/jest-dom": "^6.1.0",
|
|
"@testing-library/user-event": "^14.5.0",
|
|
"@playwright/test": "^1.41.0",
|
|
"jsdom": "^24.0.0",
|
|
"@vitest/coverage-v8": "^1.2.0",
|
|
"msw": "^2.1.0",
|
|
"eslint": "^8.56.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.0"
|
|
}
|
|
}
|