Skip to content

Commit

Permalink
Merge pull request #49 from bernardoforcillo/dev
Browse files Browse the repository at this point in the history
chore: updated to next15
  • Loading branch information
bernardoforcillo authored Oct 28, 2024
2 parents 1569429 + 5881017 commit 44adef8
Show file tree
Hide file tree
Showing 10 changed files with 1,241 additions and 737 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"no-unused-vars": "warn"
},
"env": {
"es6": true,
"node": true,
"browser": true,
"commonjs": true
}
}
12 changes: 6 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"files.autoSave": "afterDelay",
"files.associations": {
"*.css": "tailwindcss"
},
"files.autoSaveDelay": 1000,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"files.autoSave": "afterDelay",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"typescript.implementationsCodeLens.enabled": true,
"typescript.referencesCodeLens.enabled": true,
"typescript.tsdk": "./node_modules/typescript/lib",
"files.associations": {
"*.css": "tailwindcss"
}
"typescript.implementationsCodeLens.enabled": true,
"typescript.tsdk": "./node_modules/typescript/lib"
}
6 changes: 0 additions & 6 deletions next.config.js

This file was deleted.

8 changes: 8 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { NextConfig } from "next";

const nextConfig: NextConfig = {
output: 'standalone',
reactStrictMode: true,
};

export default nextConfig;
30 changes: 14 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,36 +25,34 @@
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^2.1.8",
"clsx": "^2.1.1",
"geist": "^1.3.1",
"moment": "^2.30.1",
"next": "^14.2.14",
"next": "^15.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.2"
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@types/eslint": "^8.56.12",
"@types/node": "^20.16.10",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.7.9",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.14",
"cssnano": "^7.0.6",
"eslint": "^9.13.0",
"eslint-config-next": "^15.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"browserslist": [
"> 0.1% and last 2 versions and not dead",
"maintained node versions"
],
"packageManager": "pnpm@9.11.0"
"packageManager": "pnpm@9.12.2"
}
Loading

0 comments on commit 44adef8

Please sign in to comment.