-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.67 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.67 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
{
"name": "cardify-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "biome lint .",
"check": "biome check --apply .",
"preview": "vite preview",
"format": "biome format --write .",
"format:check": "biome format --check .",
"clean": "rm -rf node_modules dist",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
},
"dependencies": {
"@floating-ui/react": "^0.27.8",
"@tanstack/react-query": "^5.67.2",
"@tanstack/react-query-devtools": "^5.67.2",
"@tiptap/core": "^3.4.4",
"@tiptap/extension-code-block-lowlight": "^3.4.2",
"@tiptap/extension-color": "^2.25.1",
"@tiptap/extension-highlight": "^2.12.0",
"@tiptap/extension-image": "^2.12.0",
"@tiptap/extension-link": "^2.12.0",
"@tiptap/extension-placeholder": "^3.0.7",
"@tiptap/extension-task-item": "^2.12.0",
"@tiptap/extension-task-list": "^2.12.0",
"@tiptap/extension-text-align": "^2.12.0",
"@tiptap/extension-text-style": "^2.25.1",
"@tiptap/extension-typography": "^2.12.0",
"@tiptap/extension-underline": "^2.12.0",
"@tiptap/pm": "^2.26.1",
"@tiptap/react": "^2.26.1",
"@tiptap/starter-kit": "^2.26.1",
"axios": "^1.8.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.4.0",
"highlight.js": "^11.11.1",
"lottie-react": "^2.4.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.544.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.0.2",
"react-router-dom": "^7.0.2",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chromatic-com/storybook": "3.2.3",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-onboarding": "8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/builder-vite": "^8.4.7",
"@storybook/react": "8.4.7",
"@storybook/react-vite": "8.4.7",
"@storybook/test": "8.4.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"chromatic": "^11.23.0",
"sass": "^1.89.0",
"sass-embedded": "^1.89.0",
"storybook": "8.4.7",
"tailwindcss": "^3.4.16",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vite-plugin-biome": "^1.0.12",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"engines": {
"node": ">=18"
}
}