update packages

This commit is contained in:
TuxCoder 2022-06-17 09:15:58 +02:00
parent 2b86fa89c4
commit 8287b01e40
3 changed files with 465 additions and 473 deletions

View file

@ -1,8 +1,19 @@
{
pkgs,
python ? pkgs.python39,
nodejs ? pkgs.nodejs,
...}:
let
nixNodePackage = builtins.fetchGit {
url = "https://github.com/mkg20001/nix-node-package.git";
rev = "03285e212016db5f28530563b58cfcc5706ff73f";
};
makeNode = import "${nixNodePackage}/nix/default.nix" pkgs {
root = ./.;
install = false;
nodejs = nodejs;
};
node-env = makeNode { };
urlobject = with python.pkgs; buildPythonPackage rec {
pname = "URLObject";
@ -31,10 +42,10 @@ let
flask-dance = with python.pkgs; buildPythonPackage rec {
pname = "Flask-Dance";
version = "5.1.0";
version = "6.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "9eb5a404ef1b06a58aabbe5ac496908bda0482af1cf08e8c00188493405842fd";
sha256 = "15bb3c412eb789a2d904bfd0fd44aac2d94f82703a51d14123fd336136d55db0";
};
doCheck = false;
propagatedBuildInputs = [
@ -99,7 +110,8 @@ let
propagatedBuildInputs = [
urllib3
python-dateutil
python_attrs
#python_attrs
attrs
httpx
];
};
@ -124,6 +136,8 @@ in
fido2 # for webauthn
flask_migrate # db migrations
nodejs
#node-env
gunicorn
flask-dance
@ -141,6 +155,8 @@ in
flask_testing
tox
types-dateutil
nose
mypy

891
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -3,33 +3,32 @@
"version": "2.0.0",
"description": "Lenticular Cloud ================",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "webpack-cli"
},
"author": "TuxCoder",
"license": "GPLv3",
"dependencies": {
"@fortawesome/fontawesome-free": "*",
"@fortawesome/fontawesome-free": "^6.1.1",
"bootstrap": "^4.6.1",
"cbor-web": "*",
"css-loader": "*",
"css-minimizer-webpack-plugin": "*",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"file-loader": "*",
"jquery": "*",
"jquery-form": "*",
"mini-css-extract-plugin": "*",
"mini-css-extract-plugin": "^2.6.0",
"node-forge": "*",
"popper.js": "*",
"qrcode-svg": "~1.1.0",
"sass": "*",
"sass-loader": "*",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"style-loader": "*",
"terser-webpack-plugin": "*",
"ts-loader": "*",
"ts-loader": "^9.3.0",
"url-loader": "*",
"webpack": "*",
"webpack-cli": "*"
},
"devDependencies": {
"webpack": "^5.72.1",
"webpack-cli": "*",
"simple-form-submit": "*"
}
},
"devDependencies": {}
}