This commit is contained in:
Nadar
2026-03-17 13:24:22 +03:00
commit 82e5ac9d81
554 changed files with 29637 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"private": true,
"scripts": {
"client": "yarn workspace client",
"dev:client": "turbo run dev --filter=...client",
"build:client": "turbo run build --filter=...client",
"pay": "yarn workspace pay",
"dev:pay": "turbo run dev --filter=...pay",
"build:pay": "turbo run build --filter=...pay",
"ui-layer": "yarn workspace ui-layer",
"shared-layer": "yarn workspace shared-layer"
},
"devDependencies": {
"prettier": "^3.0.3",
"turbo": "^1.11.3"
},
"name": "indefiti",
"packageManager": "yarn@1.22.19",
"workspaces": [
"apps/*",
"layers/*"
]
}