First commit.

This commit is contained in:
Colin Diem
2022-04-12 19:51:12 -04:00
commit 6131eda9f6
49 changed files with 25563 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"private": true,
"workspaces": {
"packages": [
"api",
"web",
"packages/*"
]
},
"devDependencies": {
"@redwoodjs/core": "1.0.0"
},
"eslintConfig": {
"extends": "@redwoodjs/eslint-config",
"root": true
},
"engines": {
"node": ">=14.19 <=16.x",
"yarn": ">=1.15"
},
"prisma": {
"seed": "yarn rw exec seed"
},
"packageManager": "yarn@3.2.0"
}