Skip to content

Commit

Permalink
Update packages and fix bootstrap import
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackburn29 committed Aug 12, 2024
1 parent 520be71 commit c6fd734
Show file tree
Hide file tree
Showing 4 changed files with 321 additions and 328 deletions.
3 changes: 3 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ const nextConfig = {
output: 'standalone',
reactStrictMode: true,
swcMinify: true,
experimental: {
turbo: {},
},
sassOptions: {
includePaths: [path.join(__dirname, 'src', 'styles')],
}
Expand Down
37 changes: 16 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,42 +5,37 @@
"type": "module",
"scripts": {
"clean": "rimraf .next/",
"start": "npm run clean && next dev",
"build": "npm run clean && next build",
"start": "next dev --turbo",
"build": "next build",
"start:prod": "next start",
"preview": "npm run build && npm run start:prod",
"fix:style": "prettier src/ -w",
"prepare": "husky install"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@tanstack/react-query": "^5.40.0",
"axios": "^1.7.2",
"@tanstack/react-query": "^5.51.23",
"axios": "^1.7.3",
"bootstrap": "^5.3.3",
"deepmerge": "^4.3.1",
"formik": "^2.4.6",
"luxon": "^3.4.4",
"next": "^14.2.3",
"next-intl": "^3.14.1",
"luxon": "^3.5.0",
"next": "^14.2.5",
"next-intl": "^3.17.2",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-bootstrap": "^0.26.2"
"react-bootstrap": "^2.10.4",
"react-icons": "^5.2.1"
},
"devDependencies": {
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-next": "^14.2.5",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.5",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.2",
"rimraf": "^5.0.5",
"sass": "^1.69.7"
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.77.8"
},
"engines": {
"npm": "Please install and use pnpm in this project",
Expand Down
Loading

0 comments on commit c6fd734

Please sign in to comment.