|
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", |
20 | | - "add-license-header": "node scripts/addLicenseHeader.js" |
| 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", |
| 24 | + "add-license-header": "node scripts/addLicenseHeader.js", |
| 25 | + "playwright:install": "playwright install", |
| 26 | + "playwright:show-report": "playwright show-report", |
| 27 | + "playwright:codegen": "playwright codegen" |
21 | 28 | }, |
22 | 29 | "dependencies": { |
23 | 30 | "@pplancq/svg-react": "^2.0.2", |
|
34 | 41 | "tw-animate-css": "^1.2.8" |
35 | 42 | }, |
36 | 43 | "devDependencies": { |
| 44 | + "@msw/playwright": "^0.4.2", |
| 45 | + "@playwright/test": "^1.57.0", |
37 | 46 | "@pplancq/eslint-config": "^4.2.0", |
38 | 47 | "@pplancq/prettier-config": "^1.2.6", |
39 | 48 | "@pplancq/stylelint-config": "^4.0.1", |
40 | 49 | "@rsbuild/core": "^1.3.22", |
| 50 | + "@rsbuild/plugin-eslint": "^1.2.0", |
41 | 51 | "@rsbuild/plugin-react": "^1.3.2", |
42 | 52 | "@tailwindcss/postcss": "^4.1.10", |
43 | 53 | "@testing-library/jest-dom": "^6.6.3", |
|
51 | 61 | "concurrently": "^9.1.2", |
52 | 62 | "eslint": "^9.30.0", |
53 | 63 | "eslint-plugin-prettier": "^5.5.0", |
54 | | - "glob": "^11.0.3", |
55 | 64 | "jsdom": "^26.1.0", |
| 65 | + "monocart-coverage-reports": "^2.12.9", |
56 | 66 | "msw": "^2.10.2", |
| 67 | + "nodemon": "^3.1.11", |
57 | 68 | "prettier": "^3.5.3", |
58 | 69 | "stylelint-prettier": "^5.0.3", |
| 70 | + "stylelint-webpack-plugin": "^5.0.1", |
59 | 71 | "typescript": "~5.7.2", |
60 | 72 | "vite-tsconfig-paths": "^5.1.4", |
61 | 73 | "vitest": "^3.2.4" |
|
0 commit comments