-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.03 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.03 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
{
"name": "@code-blocks/workspace",
"private": true,
"packageManager": "pnpm@11.1.1",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"website:lint": "pnpm --filter @code-blocks/website run check:lint",
"website:build": "pnpm --filter @code-blocks/website run build",
"website:build-cc": "pnpm --filter @code-blocks/website run build:cc",
"website:build-cli-registry": "pnpm --filter @code-blocks/website run build:registry:cli",
"website:registry": "pnpm --filter @code-blocks/website run check:registry",
"website:build-registry": "pnpm --filter @code-blocks/website run build:registry",
"typecheck": "turbo run typecheck",
"check:format": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"fix:format": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"clean": "node clean-modules.mjs"
},
"devDependencies": {
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "0.8.0",
"turbo": "2.9.16",
"typescript": "5.9.3"
}
}