-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "seihouse-ui-monorepo",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.1.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "pnpm --dir apps/workbench dev",
"build": "pnpm --dir apps/workbench build",
"start": "pnpm --dir apps/workbench start",
"storybook": "pnpm --dir apps/storybook storybook",
"build:storybook": "pnpm --dir apps/storybook build-storybook",
"lint": "eslint .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test:e2e": "playwright test",
"test:a11y": "playwright test test/accessibility",
"test:unit": "vitest run",
"typecheck": "pnpm --dir packages/seihouse-ui typecheck && pnpm --dir apps/workbench typecheck"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@tailwindcss/postcss": "^4.3.0",
"clsx": "^2.1.1",
"lucide-react": "^1.17.0",
"next": "^15.5.21",
"react": "^19.0.0",
"react-aria-components": "^1.18.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.60.0",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"eslint-plugin-storybook": "10.4.4",
"jsdom": "^26.0.0",
"prettier": "^3.8.4",
"typescript": "^5.7.0",
"typescript-eslint": "^8.61.0",
"vitest": "^3.0.0"
}
}