-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.71 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.71 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
{
"name": "@deepdish/monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:cli": "turbo run build --filter deepdish...",
"build:demo": "turbo run build --filter @deepdish/demo...",
"build:marketing": "turbo run build --filter @deepdish/marketing...",
"build:packages": "turbo run build --filter './packages/*'",
"ci:publish": "pnpm run build:packages && pnpm run build:cli && changeset publish && git push --follow-tags",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"clean": "rimraf --glob **/.next **/.turbo **/dist **/node_modules",
"code:check": "pnpm install --frozen-lockfile && biome ci . & pnpm run sort-manifests --check & cspell --dot .",
"code:fix": "biome check --write . & pnpm run sort-manifests",
"dev": "turbo run dev --concurrency=20",
"dev:demo": "turbo run dev --filter @deepdish/demo...",
"dev:marketing": "turbo run dev --filter @deepdish/marketing...",
"sort-manifests": "sort-package-json package.json apps/**/package.json packages/**/package.json",
"start:demo": "turbo run start --filter @deepdish/demo...",
"start:marketing": "turbo run start --filter @deepdish/marketing...",
"test": "bun test --coverage"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-git": "0.2.1",
"@changesets/cli": "2.28.1",
"@happy-dom/global-registrator": "15.7.4",
"@types/bun": "1.1.12",
"@types/node": "20.9.0",
"bun": "1.2.4",
"cspell": "8.16.0",
"rimraf": "6.0.1",
"sort-package-json": "2.10.1",
"turbo": "2.2.3"
},
"packageManager": "pnpm@9.15.3",
"engines": {
"node": ">=22"
}
}