-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
{
"name": "turborepo-next-shadcn-ui",
"version": "0.1.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gmickel/turborepo-shadcn-nextjs"
},
"keywords": [
"starter",
"template",
"turborepo",
"biome",
"shadcn/cn",
"nextjs"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"clean": "turbo clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build --filter=docs^... && changeset publish",
"ui:add:component": "turbo ui:add --filter=@repo/ui --",
"prepare": "lefthook install",
"storybook": "turbo dev --filter=@repo/storybook",
"build:storybook": "turbo build --filter=@repo/storybook",
"test": "turbo test",
"test:build": "turbo test:with-build",
"test:e2e": "turbo test:e2e",
"test:e2e:watch": "turbo test:e2e -- --headed",
"test:e2e:debug": "turbo test:e2e -- --debug",
"test:e2e:build": "turbo test:e2e:with-build",
"test:ui": "turbo test -- --ui",
"test:cov": "turbo test:cov",
"test:cov:ui": "turbo test:cov:ui"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "2.27.12",
"@playwright/test": "1.45.3",
"@vitest/coverage-v8": "2.0.5",
"@vitest/ui": "2.0.5",
"lefthook": "1.7.22",
"turbo": "2.0.14",
"vitest": "2.0.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.1.17",
"workspaces": ["apps/*", "packages/*"],
"trustedDependencies": ["@biomejs/biome", "esbuild", "lefthook"]
}