mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
25 lines
470 B
JSON
25 lines
470 B
JSON
{
|
|
"name": "turbo-nextjs",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"dev": "turbo dev",
|
|
"lint": "turbo lint",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\""
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "*",
|
|
"@repo/typescript-config": "*",
|
|
"prettier": "^3.2.5",
|
|
"turbo": "latest"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"packageManager": "npm@9.8.1",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
]
|
|
}
|