Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
riipandi committed Mar 30, 2024
1 parent 8c449c7 commit 052f9e4
Show file tree
Hide file tree
Showing 4 changed files with 2,837 additions and 7,379 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ $RECYCLE.BIN/

*storybook.log
/storybook-static/

# fly.toml
fly*.toml*
!fly*.example.toml
48 changes: 48 additions & 0 deletions fly.example.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# @ref: https://fly.io/docs/reference/configuration

app = "CHANGEME_APP_NAME"
primary_region = "sjc"
kill_signal = "SIGINT"
kill_timeout = 5
swap_size_mb = 512
console_command = "/bin/sh"

[build]
dockerfile = "Dockerfile"

[build.args]
NODE_VERSION = "20"
NODE_ENV = "production"

[deploy]
# https://fly.io/docs/apps/deploy/#deployment-strategy
strategy = "bluegreen"

[env]
NODE_ENV = "production"

[http_service]
internal_port = 3000
force_https = true
auto_start_machines = true
min_machines_running = 0
processes = ["app"]

[http_service.concurrency]
type = "requests"
soft_limit = 200
hard_limit = 250

[http_service.tls_options]
alpn = ["h2", "http/1.1"]
versions = ["TLSv1.2", "TLSv1.3"]
default_self_signed = false

[[http_service.checks]]
grace_period = "10s"
interval = "30s"
method = "GET"
timeout = "5s"
path = "/health"
protocol = "http"
tls_skip_verify = true
45 changes: 22 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,38 +37,37 @@
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"clsx": "^2.1.0",
"isbot": "^5.1.2",
"isbot": "^5.1.3",
"lucide-react": "^0.363.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^18.2.0",
"remix-flat-routes": "^0.6.4",
"tailwind-merge": "^2.2.2",
"tailwind-variants": "^0.2.1",
"undici": "^6.10.1"
"tailwind-variants": "^0.2.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.2.25",
"@playwright/test": "^1.42.1",
"@remix-run/dev": "^2.8.1",
"@remix-run/testing": "^2.8.1",
"@storybook/addon-essentials": "8.0.4",
"@storybook/addon-interactions": "8.0.4",
"@storybook/addon-links": "8.0.4",
"@storybook/blocks": "8.0.4",
"@storybook/react": "8.0.4",
"@storybook/react-vite": "8.0.4",
"@storybook/test": "8.0.4",
"@storybook/theming": "^8.0.4",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/react-vite": "^8.0.5",
"@storybook/test": "^8.0.5",
"@storybook/theming": "^8.0.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@tailwindcss/typography": "^0.5.12",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@types/node": "^20.12.2",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"autoprefixer": "^10.4.19",
Expand All @@ -83,19 +82,19 @@
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"happy-dom": "^14.3.6",
"happy-dom": "^14.3.9",
"husky": "^9.0.11",
"npm-check-updates": "^16.14.17",
"npm-check-updates": "^16.14.18",
"playwright": "^1.42.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"prettier-plugin-tailwindcss": "^0.5.13",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "8.0.4",
"tailwindcss": "^3.4.1",
"storybook": "8.0.5",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.1.6",
"vite": "^5.2.6",
"vite": "^5.2.7",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
Expand Down
Loading

0 comments on commit 052f9e4

Please sign in to comment.