{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  name = "spm-frontend";

  nativeBuildInputs = with pkgs; [
    yarn yarn2nix
    nodejs
  ];
}