Problem
package.json lists pg-hstore twice with different version pins:
\"pg-hstore\": \"^2.3.4\",
\"pg-hstore\": \"^2.3.3\",
JSON parsers keep only the last duplicate key, so the effective pin is ^2.3.3 — not ^2.3.4. The duplicate is silent (npm install works) but the file is malformed in spirit, gives confusing diffs, and quietly downgrades the dependency.
Fix
Delete the second entry; keep the higher ^2.3.4 pin.
Acceptance criteria
Proudly Made in Nebraska. Go Big Red! 🌽 https://xkcd.com/1654/
Problem
package.jsonlistspg-hstoretwice with different version pins:JSON parsers keep only the last duplicate key, so the effective pin is
^2.3.3— not^2.3.4. The duplicate is silent (npm installworks) but the file is malformed in spirit, gives confusing diffs, and quietly downgrades the dependency.Fix
Delete the second entry; keep the higher
^2.3.4pin.Acceptance criteria
pg-hstoreline inpackage.json.^2.3.4(or the latest stable at fix time).package-lock.jsonregenerated and committed.Proudly Made in Nebraska. Go Big Red! 🌽 https://xkcd.com/1654/