feat: stricter lint, check pipelines, docker-containers, pnpm

This commit is contained in:
2026-02-22 17:48:51 +00:00
parent 40ca6ef94a
commit b697ad823a
50 changed files with 4976 additions and 5431 deletions

View File

@@ -6,33 +6,46 @@
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start -p 4000",
"lint": "next lint"
"lint": "next lint",
"lintfix": "next lint --fix",
"security:audit": "pnpm audit --audit-level=moderate",
"security:check": "pnpm audit --json > security-report.json || true",
"security:outdated": "pnpm outdated"
},
"dependencies": {
"@splidejs/react-splide": "^0.7.12",
"animejs": "^3.2.1",
"animejs": "^3.2.2",
"aos": "^2.3.4",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"next": "^15.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"eslint": "8.57.1",
"eslint-config-next": "15.5.12",
"next": "^15.5.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-transition-group": "^4.4.5",
"sharp": "^0.32.4",
"typescript": "5.1.3"
"sharp": "^0.34.5",
"typescript": "5.9.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.12",
"@types/aos": "^3.0.4",
"@types/node": "^20.4.8",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/react-transition-group": "^4.4.10",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"sass": "^1.64.1"
"@next/eslint-plugin-next": "^15.5.12",
"@types/aos": "^3.0.7",
"@types/node": "^20.19.33",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/react-transition-group": "^4.4.12",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"sass": "^1.97.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"overrides": {
"minimatch": ">=10.2.1"
}
}
}