mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
This change brings Turborepo monorepo to independently handle the marketing website, the docs website and any other future use cases for mutli-platform support. They are using internal @katanemo package handlers for the design system and logic.
25 lines
493 B
JSON
25 lines
493 B
JSON
{
|
|
"name": "archgw-monorepo",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"build": "turbo run build",
|
|
"lint": "turbo run lint",
|
|
"format": "turbo run format",
|
|
"typecheck": "turbo run typecheck",
|
|
"clean": "turbo run clean && rm -rf node_modules"
|
|
},
|
|
"devDependencies": {
|
|
"turbo": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"packageManager": "npm@10.0.0"
|
|
}
|
|
|