v1: delete old repo, initalize monorepo structure, config, database, and api packages basic setup
This commit is contained in:
21
package.json
21
package.json
@@ -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/*"
|
||||
|
||||
Reference in New Issue
Block a user