npm boilerplate

This commit is contained in:
stupidcomputer 2024-05-08 17:58:14 -05:00
parent 10dd6418b7
commit a4809fa95a
2 changed files with 26 additions and 0 deletions

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "yig",
"version": "1.0.0",
"description": "parser and explorer for YMCA CCE legislative materials",
"main": "main",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.beepboop.systems/yig"
},
"author": "Ryan Marina",
"license": "GPL-3.0"
}

11
shell.nix Normal file
View File

@ -0,0 +1,11 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [
nodejs
];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}