Last active
April 19, 2025 03:22
-
-
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 "configurable_from_env" | |
gem "faraday" | |
gem "faulty" | |
gem "puma", "~> 6.0" | |
gem "rack-canonical-host" | |
gem "rails", "~> 8.0.0" | |
gem "redcarpet" | |
gem "sentry-rails" | |
gem "sitemap_generator" | |
gem "stimulus-rails" | |
gem "turbo-rails" | |
gem "vite_rails" | |
group :development do | |
gem "better_errors" | |
gem "binding_of_caller" | |
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 "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.13", | |
"autoprefixer": "^10.4.21", | |
"highlight.js": "^11.11.1", | |
"modern-normalize": "^3.0.1", | |
"postcss": "^8.5.2", | |
"rollup": ">=4.39.0", | |
"stimulus-vite-helpers": "^3.1.0", | |
"vite": "^6.3.0", | |
"vite-plugin-rails": "^0.5.0" | |
}, | |
"devDependencies": { | |
"@eslint/js": "^9.23.0", | |
"@types/eslint": "^9.6.1", | |
"@types/node": "^22.8.4", | |
"cspell": "^8.18.1", | |
"eslint": "^9.24.0", | |
"eslint-config-prettier": "^10.1.1", | |
"eslint-formatter-compact": "^8.40.0", | |
"eslint-plugin-prettier": "^5.2.5", | |
"npm-run-all": "^4.1.5", | |
"prettier": "^3.5.3", | |
"run-pty": "^5.0.0", | |
"stale-dep": "^0.8.2", | |
"stylelint": "^16.17.0", | |
"stylelint-config-standard": "^37.0.0", | |
"stylelint-prettier": "^5.0.3" | |
}, | |
"scripts": { | |
"fix": "npm-run-all fix:**", | |
"fix:js": "npm run -- lint:js --fix", | |
"fix:css": "npm 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