stashing code

This commit is contained in:
user
2025-10-20 17:07:41 +03:00
commit f5b99afc8f
890 changed files with 54823 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "@domain-wall/main",
"version": "0.0.0",
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=22"
},
"packageManager": "bun@1.2.8",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --concurrency=8",
"sync:models": "./scripts/sync.models.sh",
"db:migrate": "./scripts/migrate.sh",
"prod": "turbo prod",
"test": "turbo test"
},
"workspaces": [
"apps/*",
"packages/*"
]
}