feat: Initialized project

This commit is contained in:
2024-09-21 13:28:02 +07:00
parent e06ca3e703
commit a765e598ba
32 changed files with 1349 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "@minikura/repo",
"version": "0.0.1",
"workspaces": ["apps/*", "packages/*"],
"packageManager": "bun@1.1.28",
"scripts": {
"dev": "turbo dev --parallel",
"web": "bun --bun run --cwd apps/web dev",
"lint": "biome lint .",
"lint:fix": "biome lint --apply .",
"format": "biome format .",
"format:fix": "biome format --write .",
"studio": "drizzle-kit studio",
"push": "drizzle-kit push"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"concurrently": "^9.0.1",
"turbo": "^2.1.2"
}
}