-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.7 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.7 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"author": "Phil Parsons",
"license": "MIT",
"private": true,
"packageManager": "pnpm@10.33.0",
"type": "module",
"scripts": {
"build": "turbo build",
"size": "size-limit",
"size:check": "size-limit",
"clean": "pnpm run -r clean",
"dev": "pnpm run --filter=examples dev",
"format": "prettier --write .",
"lint": "turbo lint:run",
"lint:run": "eslint .",
"lint-staged": "lint-staged",
"prepare": "husky",
"release": "changeset publish",
"test": "turbo test:run",
"test:run": "vitest",
"test:coverage": "turbo test:coverage:run",
"test:coverage:run": "vitest --coverage",
"test:ui": "vitest --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"chromatic": "chromatic --exit-zero-on-changes"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint-react/eslint-plugin": "^4.0.0",
"@eslint/js": "^10.0.0",
"@size-limit/esbuild": "^12.0.1",
"@size-limit/file": "^12.0.1",
"@storybook/addon-docs": "^10.0.0",
"@storybook/addon-onboarding": "^10.0.0",
"@storybook/react-vite": "^10.0.0",
"@storybook/test": "^8.6.14",
"@storybook/test-runner": "^0.24.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/coverage-v8": "^4.0.3",
"@vitest/ui": "^4.0.3",
"chromatic": "^16.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.28.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-storybook": "^10.0.0",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsdom": "^29.0.0",
"lint-staged": "^16.0.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"size-limit": "^12.0.1",
"storybook": "^10.0.0",
"turbo": "^2.0.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.35.0",
"vite": "^8.0.0",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "^4.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,tsx,json}": [
"prettier --write",
"eslint --fix"
],
"*.{md,html}": [
"prettier --write"
]
}
}