-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.83 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.83 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@stack-and-flow/design-system",
"private": false,
"version": "1.0.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles": "./dist/design-system.css"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --project tsconfig.build.json",
"verify:package": "pnpm run build && node scripts/verify-package-consumption.mjs",
"clean": "node -e \"['dist','node_modules','pnpm-lock.yaml','package-lock.json'].forEach(p=>require('fs').rmSync(p,{recursive:true,force:true}))\" && npm cache clean --force",
"reinstall": "pnpm run clean && pnpm install",
"biome-all": "biome check --write .",
"biome-staged": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"storybook": "storybook dev -p 6006",
"storybook-build": "storybook build && node scripts/inject-preview-head.js",
"storybook-clean-cache": "node -e \"require('fs').rmSync('node_modules/.cache/storybook',{recursive:true,force:true})\"",
"pre-commit": "pnpm run biome-staged && tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test-storybook": "test-storybook",
"prepare": "lefthook install"
},
"dependencies": {
"@internationalized/date": "3.12.1",
"@radix-ui/react-avatar": "1.1.11",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-slider": "1.3.6",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"spinners-react": "1.0.11",
"tailwind-merge": "3.6.0"
},
"peerDependencies": {
"@fontsource-variable/space-grotesk": ">=5.0.0",
"lucide-react": ">=1.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"peerDependenciesMeta": {
"@fontsource-variable/space-grotesk": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "21.0.1",
"@commitlint/config-conventional": "21.0.1",
"@fontsource-variable/space-grotesk": "5.2.10",
"@storybook/addon-a11y": "8.6.18",
"@storybook/addon-actions": "8.6.18",
"@storybook/addon-docs": "8.6.18",
"@storybook/addon-essentials": "8.6.18",
"@storybook/addon-interactions": "8.6.18",
"@storybook/addon-links": "8.6.18",
"@storybook/blocks": "8.6.18",
"@storybook/manager-api": "8.6.18",
"@storybook/react": "8.6.18",
"@storybook/react-vite": "8.6.18",
"@storybook/test": "8.6.18",
"@storybook/test-runner": "0.24.4",
"@storybook/theming": "8.6.18",
"@tailwindcss/vite": "4.3.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "25.9.1",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react-swc": "4.3.1",
"@vitest/coverage-v8": "3.2.4",
"axe-playwright": "2.2.2",
"jsdom": "29.1.1",
"lefthook": "2.1.8",
"lucide-react": "1.16.0",
"playwright": "1.60.0",
"postcss": "8.5.15",
"react": "18.3.1",
"react-docgen-typescript": "2.4.0",
"react-dom": "18.3.1",
"storybook": "8.6.18",
"storybook-dark-mode": "4.0.2",
"tailwindcss": "4.3.0",
"tw-animate-css": "1.4.0",
"typescript": "6.0.3",
"vite": "6.4.2",
"vitest": "3.2.4"
},
"pnpm": {
"overrides": {
"minimatch@10.2.5>brace-expansion": "5.0.6",
"ws": "8.20.1"
},
"patchedDependencies": {
"storybook-dark-mode@4.0.2": "patches/storybook-dark-mode@4.0.2.patch"
}
}
}