Last active
February 7, 2026 21:18
-
-
Save mattbrictson/8b69970923b31726cbecf7929137b72a to your computer and use it in GitHub Desktop.
Ruby and JS dependencies that power mattbrictson.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # frozen_string_literal: true | |
| source "https://rubygems.org" | |
| ruby file: ".ruby-version" | |
| gem "bootsnap", require: false | |
| gem "cgi" | |
| gem "configurable_from_env" | |
| gem "faraday" | |
| gem "faulty" | |
| gem "openssl" | |
| gem "puma", "~> 7.0" | |
| gem "rack-canonical-host" | |
| gem "rails", "~> 8.1.0" | |
| gem "redcarpet" | |
| gem "sentry-rails" | |
| gem "sitemap_generator" | |
| gem "stimulus-rails" | |
| gem "turbo-rails" | |
| gem "vite_rails" | |
| group :development do | |
| gem "brakeman", require: false | |
| gem "bundler-audit", require: false | |
| gem "erb_lint", require: false | |
| gem "localhost" | |
| gem "rack-mini-profiler" | |
| gem "rubocop", require: false | |
| gem "rubocop-capybara", require: false | |
| gem "rubocop-minitest", require: false | |
| gem "rubocop-performance", require: false | |
| gem "rubocop-rails", require: false | |
| gem "stackprof" | |
| gem "tomo", github: "mattbrictson/tomo", branch: "main", require: false | |
| gem "web-console" | |
| gem "xray-rails", github: "mattbrictson/xray-rails", branch: "main" | |
| end | |
| group :development, :test do | |
| gem "debug" | |
| gem "dotenv" | |
| gem "launchy" | |
| end | |
| group :test do | |
| gem "capybara", require: false | |
| gem "capybara-lockstep", require: false | |
| gem "mighty_test", github: "mattbrictson/mighty_test", branch: "main" | |
| gem "minitest-snapshots", github: "mattbrictson/minitest-snapshots", branch: "main" | |
| gem "selenium-webdriver" | |
| gem "vcr" | |
| gem "webmock" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "private": "true", | |
| "type": "module", | |
| "dependencies": { | |
| "@hotwired/stimulus": "^3.2.2", | |
| "@hotwired/turbo-rails": "^8.0.21", | |
| "autoprefixer": "^10.4.23", | |
| "highlight.js": "^11.11.1", | |
| "modern-normalize": "^3.0.1", | |
| "postcss": "^8.5.6", | |
| "rollup": ">=4.55.1", | |
| "stimulus-vite-helpers": "^3.1.0", | |
| "vite": "^7.3.1", | |
| "vite-plugin-rails": "^0.5.0" | |
| }, | |
| "devDependencies": { | |
| "@eslint/js": "^9.39.2", | |
| "@types/eslint": "^9.6.1", | |
| "@types/node": "^24.10.10", | |
| "cspell": "^9.6.0", | |
| "eslint": "^9.39.2", | |
| "eslint-config-prettier": "^10.1.8", | |
| "eslint-formatter-compact": "^9.0.1", | |
| "eslint-plugin-prettier": "^5.5.5", | |
| "npm-run-all": "^4.1.5", | |
| "prettier": "^3.8.1", | |
| "run-pty": "^6.0.0", | |
| "stale-dep": "^0.8.4", | |
| "stylelint": "^17.0.0", | |
| "stylelint-config-standard": "^40.0.0", | |
| "stylelint-prettier": "^5.0.3" | |
| }, | |
| "scripts": { | |
| "fix": "npm-run-all fix:**", | |
| "fix:js": "yarn run lint:js --fix", | |
| "fix:css": "yarn run lint:css --fix", | |
| "lint": "npm-run-all lint:**", | |
| "lint:js": "eslint 'app/{components,frontend,javascript}/**/*.{js,jsx}'", | |
| "lint:css": "stylelint 'app/{components,frontend,assets/stylesheets}/**/*.{css,scss}'", | |
| "lint:cspell": "cspell --no-progress --no-summary 'app/views/**' 'app/helpers/**' 'posts/**'", | |
| "postinstall": "stale-dep -u", | |
| "start": "stale-dep && run-pty run-pty.json" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment