|
15 | 15 | "lint:prettier": "prettier \"src/**/*.!(js|jsx|mjs|ts|tsx|scss|css)\" --check --ignore-unknown", |
16 | 16 | "lint:prettier:fix": "prettier \"src/**/*.!(js|jsx|mjs|ts|tsx|scss|css)\" --write --ignore-unknown", |
17 | 17 | "lint:tsc": "tsc --noEmit", |
18 | | - "test": "vitest run", |
19 | | - "test:watch": "vitest", |
| 18 | + "test": "node scripts/test.js", |
| 19 | + "test:unit": "vitest run", |
| 20 | + "test:unit:watch": "vitest", |
| 21 | + "test:e2e": "node scripts/playwright.js test", |
| 22 | + "test:e2e:watch": "node scripts/playwright.js test --watch", |
| 23 | + "test:e2e:ui": "node scripts/playwright.js test --ui", |
20 | 24 | "orval": "orval --config orval.config.ts", |
21 | | - "add-license-header": "node scripts/addLicenseHeader.js" |
| 25 | + "add-license-header": "node scripts/addLicenseHeader.js", |
| 26 | + "playwright:install": "playwright install", |
| 27 | + "playwright:show-report": "playwright show-report", |
| 28 | + "playwright:codegen": "playwright codegen" |
22 | 29 | }, |
23 | 30 | "dependencies": { |
24 | 31 | "@pplancq/svg-react": "^2.0.2", |
|
35 | 42 | "tw-animate-css": "^1.2.8" |
36 | 43 | }, |
37 | 44 | "devDependencies": { |
| 45 | + "@msw/playwright": "^0.4.2", |
| 46 | + "@playwright/test": "^1.57.0", |
38 | 47 | "@pplancq/eslint-config": "^4.2.0", |
39 | 48 | "@pplancq/prettier-config": "^1.2.6", |
40 | 49 | "@pplancq/stylelint-config": "^4.0.1", |
41 | 50 | "@rsbuild/core": "^1.3.22", |
| 51 | + "@rsbuild/plugin-eslint": "^1.2.0", |
42 | 52 | "@rsbuild/plugin-react": "^1.3.2", |
43 | 53 | "@tailwindcss/postcss": "^4.1.10", |
44 | 54 | "@testing-library/jest-dom": "^6.6.3", |
|
52 | 62 | "concurrently": "^9.1.2", |
53 | 63 | "eslint": "^9.30.0", |
54 | 64 | "eslint-plugin-prettier": "^5.5.0", |
55 | | - "glob": "^11.0.3", |
56 | 65 | "jsdom": "^26.1.0", |
| 66 | + "monocart-coverage-reports": "^2.12.9", |
57 | 67 | "msw": "^2.10.2", |
| 68 | + "nodemon": "^3.1.11", |
58 | 69 | "orval": "^7.17.0", |
59 | 70 | "prettier": "^3.5.3", |
60 | 71 | "stylelint-prettier": "^5.0.3", |
| 72 | + "stylelint-webpack-plugin": "^5.0.1", |
61 | 73 | "typescript": "~5.7.2", |
62 | 74 | "vite-tsconfig-paths": "^5.1.4", |
63 | 75 | "vitest": "^3.2.4" |
|
0 commit comments