-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sipe-design-system",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"cz": "cz",
"lint": "eslint . --flag unstable_ts_config",
"build:storybook": "storybook build",
"dev:storybook": "storybook dev -p 6006",
"create:component": "tsx scripts/createComponent.ts create",
"test": "vitest"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"@clack/prompts": "^0.9.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@commitlint/types": "^19.5.0",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "catalog:",
"@storybook/addon-interactions": "catalog:",
"@storybook/addon-links": "catalog:",
"@storybook/blocks": "catalog:",
"@storybook/manager-api": "^8.4.7",
"@storybook/react": "catalog:",
"@storybook/react-vite": "catalog:",
"@storybook/test": "catalog:",
"@storybook/theming": "^8.4.7",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.8.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "catalog:",
"chromatic": "^11.19.0",
"clipanion": "4.0.0-rc.4",
"commitizen": "^4.3.1",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.2",
"husky": "^9.1.7",
"knip": "catalog:",
"lint-staged": "^15.3.0",
"sanitize.css": "^13.0.0",
"storybook": "catalog:",
"tsup": "catalog:",
"tsx": "^4.19.2",
"typescript": "catalog:",
"typescript-eslint": "^8.19.1",
"vitest": "catalog:"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{ts,tsx}": [
"biome lint --write",
"eslint --fix --flag unstable_ts_config"
],
"*.{json,css,js,ts}": ["biome format --write", "biome lint --write"]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}