arbret/frontend/package.json
2025-12-20 23:06:05 +01:00

30 lines
762 B
JSON

{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"test:e2e": "playwright test",
"generate-api-types": "openapi-typescript http://localhost:8000/openapi.json -o app/generated/api.ts"
},
"dependencies": {
"bech32": "^2.0.0",
"next": "15.1.2",
"react": "19.0.0",
"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",
"@vitejs/plugin-react": "^4.3.4",
"jsdom": "^26.0.0",
"openapi-typescript": "^7.10.1",
"typescript": "5.9.3",
"vitest": "^2.1.8"
}
}