front init

This commit is contained in:
Daniil
2026-01-12 23:06:40 +03:00
parent b1d3e89988
commit 749fda017c
27 changed files with 2322 additions and 148 deletions
+49 -41
View File
@@ -1,54 +1,62 @@
{
"name": "fsd-nest-template",
"description": "Pure Next.js FSD template with jest, react testing lib, stylelint, prettier and eslint",
"author": {
"name": "@yunglocokid (Dmitriy Bratchikov)",
"url": "https://github.com/yunglocokid"
},
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.5",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "concurrently \"yarn lint:es\" \"yarn lint:prettier\"",
"lint:es": "next lint",
"lint:prettier": "prettier . --write",
"test": "jest",
"test:watch": "jest --watch"
"dev": "bun --bun next dev",
"build": "bun --bun next build",
"start": "bun --bun next start",
"lint": "concurrently \"bun run lint:es\" \"bun run lint:prettier\"",
"create-component": "npx generate-react-cli component",
"gc": "bun run .scripts/create-fsd-component.ts",
"gicons": "npx @svgr/cli --ext tsx --typescript --no-prettier --icon --ref --no-svgo ./src/shared/assets/raw-icons/ --out-dir ./src/shared/ui/Icons/"
},
"dependencies": {
"next": "14.2.3",
"@tanstack/react-query": "^5.90.14",
"@tanstack/react-query-devtools": "^5.91.2",
"axios": "^1.13.2",
"bootstrap": "^5.3.8",
"classnames": "^2.5.1",
"framer-motion": "^12.23.26",
"lodash": "^4.17.21",
"lucide-react": "^0.562.0",
"moment": "^2.30.1",
"next": "16.1.1",
"normalize.css": "^8.0.1",
"react": "^18",
"react-dom": "^18"
"openapi-react-query": "^0.5.1",
"react": "^19.2.3",
"react-aria-components": "^1.14.0",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.3",
"react-dropzone": "^14.3.8",
"react-toastify": "^11.0.5",
"usehooks-ts": "^3.1.1",
"xior": "^0.8.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-boundaries": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"sass": "^1.77.1",
"stylelint": "^16.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@svgr/cli": "^8.1.0",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-boundaries": "^5.3.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"prettier": "^3.7.4",
"sass": "^1.97.1",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-standard-scss": "^16.0.0",
"stylelint-order": "^7.0.0",
"stylelint-order-config-standard": "^0.1.3",
"ts-node": "^10.9.2",
"typescript": "^5",
"typescript-eslint": "^7.10.0"
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
}
}
}