-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.23 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "coolify-tweaks",
"description": "Opinionated tweaks for Coolify: better spacing, layout, and color polish.",
"author": {
"name": "Anirudh Sriram",
"email": "hello@techwithanirudh.com",
"url": "https://github.com/techwithanirudh"
},
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/techwithanirudh/coolify-tweaks"
},
"homepage": "https://coolify-tweaks.techwithanirudh.com",
"engines": {
"node": "^24.11.0",
"pnpm": "^11.1.0"
},
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"dev": "turbo watch dev --continue",
"dev:web": "turbo watch dev -F @repo/docs...",
"dev:style": "turbo watch dev -F @repo/style...",
"dev:api": "turbo watch dev -F @repo/api...",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"check:spelling": "turbo run check:spelling",
"ui-add": "turbo run ui-add",
"release": "turbo run build --filter=./apps/* && changeset publish",
"version": "changeset version && pnpm install --lockfile-only",
"update-pkgs": "taze -w -r",
"update:major": "taze -w -r major"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/format": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@repo/cspell-config": "workspace:*",
"@repo/prettier-config": "workspace:*",
"@turbo/gen": "^2.10.7",
"cspell": "catalog:",
"dotenv-cli": "^11.0.0",
"lefthook": "^2.1.10",
"prettier": "catalog:",
"taze": "^19.16.0",
"turbo": "^2.10.7",
"typescript": "catalog:"
},
"prettier": "@repo/prettier-config",
"packageManager": "pnpm@11.17.0"
}