-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ctrlplane",
"private": true,
"engines": {
"node": ">=22.10.0",
"pnpm": "^10.2.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"build:digitalocean": "pnpm install --production=false && pnpm build",
"test": "turbo test",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean && find . -type d -name 'dist' -exec rm -rf {} +",
"db:push": "pnpm -F db push",
"db:studio": "pnpm -F db studio",
"dev": "turbo dev --parallel --concurrency 30 --cache-workers 30 --filter=!./integrations/**/*",
"dev:docker": "docker compose -f docker-compose.dev.yaml up -d",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck",
"ui-add": "pnpm -F ui ui-add",
"openapi:merge": "pnpm -F openapi-merge merge"
},
"devDependencies": {
"@ctrlplane/prettier-config": "workspace:*",
"@turbo/gen": "^2.4.0",
"prettier": "catalog:",
"turbo": "^2.4.0",
"typescript": "^5.7.3"
},
"prettier": "@ctrlplane/prettier-config",
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"@openapitools/openapi-generator-cli",
"core-js-pure",
"tree-sitter",
"tree-sitter-json",
"tree-sitter-yaml"
]
}
}