-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.02 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
{
"name": "immo-bricks-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest run -c vitest.component.config.ts",
"test:watch": "vitest -c vitest.component.config.ts",
"test:coverage": "vitest run -c vitest.component.config.ts --coverage"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tooltip": "^1.2.0",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.488.0",
"next": "15.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.2.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@eslint/eslintrc": "^3",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/experimental-addon-test": "^8.6.12",
"@storybook/experimental-nextjs-vite": "^8.6.12",
"@storybook/nextjs": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/test": "^8.6.12",
"@tailwindcss/postcss": "^4",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "^19.1.0",
"@types/react-dom": "^19",
"@vitest/browser": "^3.1.1",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9",
"eslint-config-next": "15.3.0",
"eslint-plugin-storybook": "^0.12.0",
"jsdom": "^26.1.0",
"playwright": "^1.51.1",
"storybook": "^8.6.12",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^3.1.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}