-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.32 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.32 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
{
"name": "selltim-components",
"private": false,
"version": "1.5.0",
"type": "module",
"files": [
"dist"
],
"engines": {
"node": "22"
},
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.cjs"
}
},
"scripts": {
"dev": "storybook dev -p 6006",
"build": "tsc -b && vite build",
"build-storybook": "storybook build",
"lint": "eslint ."
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@img-comparison-slider/react": "^8.0.2",
"@sidekickicons/react": "^0.13.0",
"@tailwindcss/vite": "^4.1.5",
"chroma-js": "^3.1.2",
"dayjs": "^1.11.13",
"embla-carousel-auto-scroll": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"heroicons": "^2.2.0",
"motion": "^12.18.1",
"object-hash": "^3.0.0",
"react-pageflip": "^2.0.3",
"react-pdf": "^10.2.0",
"rollup-preserve-directives": "^1.1.3",
"tailwindcss": "^4.1.5",
"vanilla-cookieconsent": "^3.1.0",
"yet-another-react-lightbox": "^3.23.2"
},
"peerDependencies": {
"next": "^15.3.3",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@eslint/js": "^9.25.0",
"@storybook/addon-docs": "^9.1.8",
"@storybook/addon-onboarding": "^9.1.8",
"@storybook/addon-vitest": "9.1.8",
"@storybook/nextjs-vite": "^9.1.8",
"@storybook/react-vite": "^9.1.8",
"@tailwindcss/typography": "^0.5.16",
"@types/chroma-js": "^3.1.1",
"@types/node": "^22.15.12",
"@types/object-hash": "^3.0.6",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/browser": "^3.1.3",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^9.0.4",
"globals": "^16.0.0",
"next": "^15.5.4",
"playwright": "^1.52.0",
"serve": "^14.2.4",
"storybook": "^9.1.8",
"tailwind-scrollbar": "^4.0.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.6",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.3"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}