-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 975 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 975 Bytes
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
{
"name": "ditherkit",
"private": true,
"scripts": {
"build": "turbo build",
"build:web": "turbo build --filter=example-next",
"clean": "turbo clean",
"dev": "turbo dev",
"dev:web": "turbo dev --filter=example-next",
"lint": "turbo lint",
"start:web": "turbo start --filter=example-next",
"syncpack:check": "syncpack lint",
"syncpack:fix": "syncpack fix",
"syncpack:format": "syncpack format",
"test": "turbo test",
"test:react": "turbo test --filter=@ditherkit/e2e -- --project=vite-dev --project=vite-preview",
"test:next": "turbo test --filter=@ditherkit/e2e -- --project=next-dev --project=next-prod --project=next-pages-dev --project=next-pages-prod",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"oxlint": "^1.2.0",
"syncpack": "^14.3.0",
"turbo": "^2.9.5",
"typescript": "^6.0.2"
},
"packageManager": "pnpm@10.29.2",
"workspaces": [
"packages/*",
"apps/*"
]
}