2026-04-03 20:55:58 +02:00
|
|
|
{
|
|
|
|
|
"name": "frontend",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
2026-04-05 22:16:44 +02:00
|
|
|
"lint": "eslint",
|
|
|
|
|
"test": "jest",
|
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
|
"test:coverage": "jest --coverage"
|
2026-04-03 20:55:58 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"next": "16.2.2",
|
|
|
|
|
"react": "19.2.4",
|
|
|
|
|
"react-dom": "19.2.4"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@tailwindcss/postcss": "^4",
|
2026-04-05 22:16:44 +02:00
|
|
|
"@testing-library/dom": "^10.4.1",
|
|
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
|
|
|
"@testing-library/react": "^16.3.2",
|
|
|
|
|
"@testing-library/user-event": "^14.6.1",
|
|
|
|
|
"@types/jest": "^30.0.0",
|
2026-04-03 20:55:58 +02:00
|
|
|
"@types/node": "^20",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
|
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "16.2.2",
|
2026-04-05 22:16:44 +02:00
|
|
|
"jest": "^30.3.0",
|
2026-04-06 22:18:06 +02:00
|
|
|
"jest-environment-jsdom": "^30.3.0",
|
2026-04-03 20:55:58 +02:00
|
|
|
"tailwindcss": "^4",
|
2026-04-05 22:16:44 +02:00
|
|
|
"ts-jest": "^29.4.9",
|
2026-04-03 20:55:58 +02:00
|
|
|
"typescript": "^5"
|
|
|
|
|
},
|
|
|
|
|
"ignoreScripts": [
|
|
|
|
|
"sharp",
|
|
|
|
|
"unrs-resolver"
|
|
|
|
|
],
|
|
|
|
|
"trustedDependencies": [
|
|
|
|
|
"sharp",
|
|
|
|
|
"unrs-resolver"
|
|
|
|
|
]
|
|
|
|
|
}
|