-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.21 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "sipe-design-system",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"cz": "cz",
"format": "biome format --write",
"lint": "pnpm lint:biome && pnpm lint:package",
"lint:biome": "biome lint",
"lint:biome:fix": "biome check --write",
"lint:package": "tsx scripts/checkPackageConsistency.ts",
"dev:storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"serve:storybook": "npx http-server storybook-static -p 6006",
"create:component": "tsx scripts/createComponent.ts create",
"build": "pnpm --filter './packages/*' -r build",
"typecheck": "pnpm --filter './packages/*' -r typecheck",
"test": "vitest",
"test:coverage": "vitest --coverage",
"clean": "pnpm --filter './www' clean && pnpm --filter './packages/*' clean"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@changesets/cli": "^2.27.9",
"@clack/prompts": "^0.9.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/cz-commitlint": "^20.5.1",
"@manypkg/get-packages": "^3.1.0",
"@storybook/addon-docs": "^10.0.0",
"@storybook/react": "catalog:",
"@storybook/react-vite": "catalog:",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.8.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vanilla-extract/esbuild-plugin": "catalog:",
"@vanilla-extract/vite-plugin": "catalog:",
"@vitest/coverage-v8": "catalog:",
"chromatic": "^11.19.0",
"clipanion": "4.0.0-rc.4",
"commitizen": "^4.3.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"inquirer": "^9.3.8",
"knip": "catalog:",
"lint-staged": "^15.3.0",
"sanitize.css": "^13.0.0",
"storybook": "catalog:",
"tsup": "catalog:",
"tsx": "^4.19.2",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"zod": "^4.3.6"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.22.2 <23",
"pnpm": "10.33.0"
},
"lint-staged": {
"*.{ts,tsx,css,js}": [
"biome check --write --unsafe --no-errors-on-unmatched"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}