mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
50 lines
1.6 KiB
JSON
50 lines
1.6 KiB
JSON
{
|
|
"name": "dokploy",
|
|
"private": true,
|
|
"scripts": {
|
|
"dokploy:setup": "pnpm --filter=dokploy run setup",
|
|
"dokploy:dev": "pnpm --filter=dokploy run dev",
|
|
"dokploy:build": "pnpm --filter=dokploy run build",
|
|
"dokploy:start": "pnpm --filter=dokploy run start",
|
|
"test": "pnpm --filter=dokploy run test",
|
|
"docker:build:canary": "./apps/dokploy/docker/build.sh canary",
|
|
"docs:dev": "pnpm --filter=docs run dev",
|
|
"docs:build": "pnpm --filter=docs run build",
|
|
"docs:typecheck": "pnpm --filter=docs run typecheck",
|
|
"website:dev": "pnpm --filter=website run dev",
|
|
"website:build": "pnpm --filter=website run build",
|
|
"website:typecheck": "pnpm --filter=website run typecheck",
|
|
"typecheck": "pnpm -r run typecheck",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"build": "pnpm -r run build",
|
|
"format-and-lint": "biome check .",
|
|
"check": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
|
|
"format-and-lint:fix": "biome check . --write",
|
|
"prepare": "node ./.config/.husky/install.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv": "16.4.5",
|
|
"esbuild": "0.20.2",
|
|
"tsx": "4.16.2",
|
|
"lint-staged": "^15.2.7",
|
|
"@biomejs/biome": "1.8.3",
|
|
"husky": "^9.0.11",
|
|
"@commitlint/cli": "^19.3.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@types/node": "^18.17.0"
|
|
},
|
|
"packageManager": "pnpm@9.5.0",
|
|
"engines": {
|
|
"node": "^18.18.0",
|
|
"pnpm": ">=9.5.0"
|
|
},
|
|
"lint-staged": {
|
|
"*": [
|
|
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
|
|
]
|
|
},
|
|
"commitlint": {
|
|
"extends": ["@commitlint/config-conventional"]
|
|
}
|
|
}
|