made system changes

This commit is contained in:
SinachPat
2026-04-23 09:39:01 +01:00
parent 71296f82af
commit dc177c7689
49 changed files with 6256 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "originmain",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"typecheck": "pnpm -r run typecheck",
"lint": "eslint . --max-warnings 0",
"test": "vitest run --coverage",
"build": "pnpm --filter @originmain/app run build",
"dev": "pnpm --filter @originmain/app run dev",
"migration:dry-run": "supabase db diff --schema public"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
}
}