arbret/frontend/package.json

38 lines
973 B
JSON
Raw Normal View History

2025-12-18 21:37:28 +01:00
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"type": "module",
2025-12-18 21:37:28 +01:00
"scripts": {
"dev": "next dev",
"build": "next build",
2025-12-18 21:48:41 +01:00
"start": "next start",
"test": "vitest run",
2025-12-20 23:06:05 +01:00
"test:e2e": "playwright test",
"generate-api-types": "openapi-typescript http://localhost:8000/openapi.json -o app/generated/api.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
2025-12-18 21:37:28 +01:00
},
"dependencies": {
2025-12-19 10:30:23 +01:00
"bech32": "^2.0.0",
2025-12-18 21:37:28 +01:00
"next": "15.1.2",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
2025-12-18 21:48:41 +01:00
"@playwright/test": "^1.49.1",
"@testing-library/react": "^16.1.0",
2025-12-18 21:37:28 +01:00
"@types/node": "25.0.3",
"@types/react": "19.2.7",
2025-12-18 21:48:41 +01:00
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
2025-12-18 21:48:41 +01:00
"jsdom": "^26.0.0",
2025-12-20 23:06:05 +01:00
"openapi-typescript": "^7.10.1",
2025-12-18 21:48:41 +01:00
"typescript": "5.9.3",
"typescript-eslint": "^8.50.0",
2025-12-18 21:48:41 +01:00
"vitest": "^2.1.8"
2025-12-18 21:37:28 +01:00
}
}