-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.63 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "spqm-storybook-design",
"author": "Manuel Agustín Miglioranza",
"license": "MIT",
"version": "0.1.0",
"keywords": [
"SPQM",
"storybook design",
"design system",
"components",
"storybook"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=CHROMATIC_PROJECT_TOKEN",
"test:storybook": "npx test-storybook"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource-variable/sofia-sans": "^5.1.1",
"@nivo/calendar": "^0.88.0",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-hover-card": "^1.1.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-navigation-menu": "^1.2.4",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-radio-group": "^1.2.2",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toggle-group": "^1.1.1",
"@xyflow/react": "^12.4.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.473.0",
"next": "15.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-resizable-panels": "^2.1.7",
"recharts": "^2.15.1",
"sonner": "^1.7.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@eslint/eslintrc": "^3",
"@storybook/addon-a11y": "^8.5.0",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-onboarding": "^8.5.0",
"@storybook/addon-themes": "^8.5.0",
"@storybook/blocks": "^8.5.0",
"@storybook/manager-api": "^8.5.0",
"@storybook/nextjs": "^8.5.0",
"@storybook/react": "^8.5.0",
"@storybook/test": "^8.5.0",
"@storybook/test-runner": "^0.21.0",
"@storybook/theming": "^8.5.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"axe-playwright": "^2.0.3",
"chromatic": "^11.24.0",
"eslint": "^9",
"eslint-config-next": "15.1.4",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-storybook": "^0.11.2",
"msw": "^2.7.0",
"msw-storybook-addon": "^2.0.4",
"postcss": "^8",
"storybook": "^8.5.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}