16 lines
244 B
Nix
16 lines
244 B
Nix
with (import <nixpkgs> {});
|
|
mkShell {
|
|
buildInputs = [
|
|
yarn
|
|
nodejs
|
|
] ++ (with pkgs.nodePackages; [
|
|
npm
|
|
nodemon
|
|
]);
|
|
shellHook = ''
|
|
export NAME="react-shell"
|
|
export NODE_OPTIONS=--openssl-legacy-provider
|
|
'';
|
|
}
|
|
|