with some tests

This commit is contained in:
counterweight 2025-12-18 21:48:41 +01:00
parent a764c92a0b
commit 0995e1cc77
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
18 changed files with 3020 additions and 16 deletions

View file

@ -5,7 +5,9 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
"start": "next start",
"test": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"next": "15.1.2",
@ -13,8 +15,13 @@
"react-dom": "19.0.0"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@testing-library/react": "^16.1.0",
"@types/node": "25.0.3",
"@types/react": "19.2.7",
"typescript": "5.9.3"
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^26.0.0",
"typescript": "5.9.3",
"vitest": "^2.1.8"
}
}