frontend/package.json

29 lines
639 B
JSON
Raw Permalink Normal View History

2024-12-17 17:55:16 +00:00
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2025-01-07 11:22:05 +00:00
"@mantine/core": "^7.15.1",
"@mantine/hooks": "^7.15.1",
"@tabler/icons-react": "^3.26.0",
"next": "15.1.0",
2024-12-17 17:55:16 +00:00
"react": "^19.0.0",
2025-01-07 11:22:05 +00:00
"react-dom": "^19.0.0"
2024-12-17 17:55:16 +00:00
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
2025-01-07 11:22:05 +00:00
"@types/react-dom": "^19",
"postcss": "^8.4.49",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5"
2024-12-17 17:55:16 +00:00
}
}