Live (In a Volcano) community card game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
899 B

// pinned-packages.js
// Copyright (C) 2022 DTP Technologies, LLC
// License: Apache 2.0
/*
* The update-deps.js script automates updating dependencies, and will honor
* version specifications found here, if any.
*
* This enables the developer to "pin" a package at a version specification that
* is guaranteed to work with the application.
*/
'use strict';
module.exports = {
/*
* FontAwesome is being held back because they've lost their damn mind if they
* think I'm changing every CSS class. I'll stay on 5.15.4 forever.
*/
"@fortawesome/fontawesome-free": {
version: "5.15.4",
exact: true,
},
/*
* node-fetch is being held at latest 2.x because I can't convert everything
* to a module quite yet (required for 3+). And, it's not that critical of a
* tool in this application stack.
*/
"node-fetch": {
version: "2",
exact: false,
},
};