initial commit, have most of the categories crud methods

This commit is contained in:
Annika
2022-07-01 16:02:45 -06:00
commit a943a20d25
104 changed files with 34031 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"name": "budgit",
"version": "1.0.0",
"scripts": {
"build": "npm run setup:server",
"setup:app": "npm run setup:server && npm run setup:client",
"setup:client": "cd budgit.client && npm i",
"setup:server": "cd budgit && npm i",
"start": "node budgit/index.js"
},
"engines": {
"node": "^14.17.0"
}
}