Files
2023-11-25 18:12:47 -05:00

11 lines
183 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
nativeBuildInputs = [
nodejs_20
nodePackages_latest.npm-check-updates
nodePackages_latest.create-react-app
];
}