-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "storybook-web",
"private": true,
"scripts": {
"build:frontpage": "turbo run build --filter=frontpage",
"build:frontpage:analyze": "ANALYZE=true turbo run build --filter=frontpage",
"build:ui": "turbo run build --filter=@repo/ui",
"dev": "turbo run dev",
"fetch-docs": "turbo run fetch-docs",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"storybook": "turbo run storybook",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .turbo && rm -rf apps/frontpage/.next && rm -rf apps/frontpage/.turbo",
"sync-docs": "tsx --tsconfig tsconfig.json sync-docs.ts",
"test": "turbo test",
"turbo": "turbo"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"dotenv": "^16.4.5",
"prettier": "^3.3.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"tsx": "^4.15.1",
"turbo": "^2.0.9"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}