Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
riipandi committed Oct 18, 2024
1 parent ac12f6a commit b4db3fe
Show file tree
Hide file tree
Showing 4 changed files with 513 additions and 462 deletions.
20 changes: 19 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

services:
pgsql:
image: postgres:16-alpine
image: postgres:17-alpine
container_name: remix_pgsql
hostname: postgres
restart: unless-stopped
Expand Down Expand Up @@ -48,8 +48,26 @@ services:
# MP_UI_AUTH: 'user1:password1 user2:password2'
TZ: Asia/Jakarta

valkey:
image: valkey/valkey:8-bookworm
container_name: remix_valkey
hostname: valkey
restart: always
environment:
# ALLOW_EMPTY_PASSWORD is recommended only for development.
- ALLOW_EMPTY_PASSWORD=yes
- VALKEY_DISABLE_COMMANDS=FLUSHDB,FLUSHALL
ports:
- 6379:6379
volumes:
- valkey_data:/data:rw
# - ./scripts/valkey.conf:/etc/valkey.conf:ro
# command: 'valkey-server /etc/valkey.conf --server-threads 2'

volumes:
pgsql_data:
driver: local
mailpit_data:
driver: local
valkey_data:
driver: local
52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,33 +57,33 @@
"test": "vitest --run"
},
"dependencies": {
"@remix-run/css-bundle": "^2.12.1",
"@remix-run/express": "^2.12.1",
"@remix-run/node": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@remix-run/serve": "^2.12.1",
"@remix-run/css-bundle": "^2.13.1",
"@remix-run/express": "^2.13.1",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"clsx": "^2.1.1",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express-rate-limit": "^7.4.1",
"express": "^4.21.0",
"express": "^4.21.1",
"helmet": "^8.0.0",
"is-ip": "^5.0.1",
"isbot": "^5.1.17",
"lucide-react": "^0.447.0",
"lucide-react": "^0.453.0",
"morgan": "^1.10.0",
"react-dom": "^18.3.1",
"react": "^18.3.1",
"remix-flat-routes": "^0.6.5",
"tailwind-merge": "^2.5.3",
"tailwind-merge": "^2.5.4",
"tailwind-variants": "^0.2.1",
"valibot": "^0.42.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@playwright/test": "^1.47.2",
"@remix-run/dev": "^2.12.1",
"@remix-run/testing": "^2.12.1",
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.48.1",
"@remix-run/dev": "^2.13.1",
"@remix-run/testing": "^2.13.1",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
Expand All @@ -94,41 +94,41 @@
"@storybook/theming": "^8.3.5",
"@swc-node/register": "^1.10.9",
"@swc/cli": "0.4.1-nightly.20240914",
"@swc/core": "^1.7.26",
"@swc/core": "^1.7.36",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.4",
"@types/react-dom": "^18.3.0",
"@types/node": "^22.7.6",
"@types/react-dom": "^18.3.1",
"@types/react": "^18.3.11",
"@vitest/coverage-istanbul": "^2.1.2",
"@vitest/ui": "^2.1.2",
"@vitest/coverage-istanbul": "^2.1.3",
"@vitest/ui": "^2.1.3",
"autoprefixer": "^10.4.20",
"git-cliff": "^2.6.1",
"happy-dom": "^15.7.4",
"lefthook": "^1.7.18",
"npm-check-updates": "^17.1.3",
"playwright": "^1.47.2",
"lefthook": "^1.7.21",
"npm-check-updates": "^17.1.4",
"playwright": "^1.48.1",
"postcss": "^8.4.47",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.3.5",
"tailwind-debug-breakpoints": "^1.0.3",
"tailwindcss-animate": "^1.0.7",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite-plugin-inspect": "^0.8.7",
"vite-tsconfig-paths": "^5.0.1",
"vite": "^5.4.8",
"vitest": "^2.1.2"
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=20.11.1"
},
"packageManager": "[email protected].0"
"packageManager": "[email protected].2"
}
7 changes: 2 additions & 5 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import 'dotenv/config'
import path, { dirname } from 'node:path'
import { fileURLToPath } from 'node:url'
import path from 'node:path'
import { defineConfig, devices } from '@playwright/test'

const __dirname = dirname(fileURLToPath(import.meta.url))

export const STORAGE_STATE = path.join(__dirname, '.playwright/user.json')
export const STORAGE_STATE = path.join(import.meta.dirname, '.playwright/user.json')

/**
* Reference: https://playwright.dev/docs/test-configuration
Expand Down
Loading

0 comments on commit b4db3fe

Please sign in to comment.