Files
growstuff/package.json
T
Brenda WallaceandClaude Opus 5 f1ce7e1d53 Take Leaflet.markercluster from npm instead of rails-assets.org
rails-assets.org is down, and bundler can't install anything while a
gem's source is unreachable, so CI fails for every branch before a
single spec runs. The one gem from there was
rails-assets-leaflet.markercluster; it now comes from npm, where the
React bundle's packages already come from, and node_modules is already
on the asset path. CI and Heroku both install npm packages.

That gem also brought in rails-assets-leaflet, a second copy of Leaflet
(1.5.1), which shadowed the leaflet-rails gem the Gemfile asks for. With
it gone, the maps get Leaflet 1.9.4 from leaflet-rails, as intended, so
the cluster plugin is its current release, 1.5.3, which supports it.
npm's peer dependency warning for leaflet is expected: Leaflet comes
from the gem, loaded before the plugin.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-22 18:39:48 +12:00

39 lines
1006 B
JSON

{
"name": "growstuff",
"version": "1.0.0",
"description": "Growstuff Linters",
"main": "index.js",
"scripts": {
"build": "esbuild app/javascript/react_islands.jsx --bundle --sourcemap --outdir=app/assets/builds --public-path=/assets",
"build:watch": "yarn build --watch=forever"
},
"dependencies": {
"esbuild": "^0.28.2",
"leaflet.markercluster": "^1.5.3",
"mdbootstrap": "^4.20.0",
"react": "^19.3.0",
"react-dom": "^19.3.0"
},
"engines": {
"node": ">=6.0.0",
"yarn": ">=0.25.2"
},
"devDependencies": {
"@coffeelint/cli": "^3.0.0",
"@percy/cli": "^1.0.0-beta.76",
"csslint": "^1.0.5",
"eslint": "^10.0.0",
"eslint-config-google": "^0.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/growstuff/growstuff.git"
},
"author": "",
"license": "AGPL-1.0",
"bugs": {
"url": "https://github.com/growstuff/growstuff/issues"
},
"homepage": "https://github.com/growstuff/growstuff#readme"
}