v1: delete old repo, initalize monorepo structure, config, database, and api packages basic setup

This commit is contained in:
2025-10-10 21:17:32 -04:00
parent ccceb77179
commit e7fff00001
75 changed files with 1362 additions and 1432 deletions

View File

@@ -1,15 +1,7 @@
{
"name": "concord",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.6.2",
"@biomejs/biome": "^2.2.5",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
@@ -17,6 +9,17 @@
"node": ">=18"
},
"packageManager": "bun@1.2.23",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"check-types": "turbo run check-types",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev --skip-generate",
"db:deploy": "prisma migrate deploy"
},
"workspaces": [
"apps/*",
"packages/*"