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