Files
nextjs-template/package.json
S.Gromov 8a8ecba397 init: шаблон Next.js приложения
- Next.js 16 + React 19 + TypeScript
- Mantine UI + PostCSS Modules
- Biome (линтинг и форматирование)
- Zustand, SWR
- Структура FSD (screens, widgets, features, entities, shared)
- Шаблоны генерации (.templates/): component, screen, feature, widget, entity, layout, store
- Конфигурация VS Code (расширения, настройки)
- CSS-токены (цвета, отступы, радиусы, медиа)
- Open Graph метаданные
- Тестовый home screen с Mantine
2026-03-28 22:11:43 +03:00

30 lines
621 B
JSON

{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write"
},
"dependencies": {
"@mantine/core": "^8.3.18",
"@mantine/hooks": "^8.3.18",
"clsx": "^2.1.1",
"next": "16.2.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"swr": "^2.4.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"typescript": "^5"
}
}