-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.35 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.35 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "Boar",
"author": "Ciro Mirkin",
"private": true,
"version": "2.5.4",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 30",
"format": "prettier --write --ignore-unknown ./src ./e2e",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test-ui": "vitest --ui",
"test:e2e": "playwright test --project=chromium --project=firefox",
"test:e2e-ui": "playwright test --ui",
"test:all": "vitest run && playwright test --project=chromium --project=firefox",
"prepare": "husky"
},
"dependencies": {
"-": "^0.0.1",
"@formkit/tempo": "^0.0.13",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"@supabase/supabase-js": "^2.49.4",
"@tanstack/react-query": "^5.90.2",
"@tiptap/extension-bullet-list": "^3.14.0",
"@tiptap/extension-document": "^3.14.0",
"@tiptap/extension-highlight": "^3.14.0",
"@tiptap/extension-history": "^3.14.0",
"@tiptap/extension-list-item": "^3.14.0",
"@tiptap/extension-ordered-list": "^3.14.0",
"@tiptap/extension-paragraph": "^3.14.0",
"@tiptap/extension-placeholder": "^3.7.2",
"@tiptap/extension-text": "^3.14.0",
"@tiptap/extensions": "^3.14.0",
"@tiptap/react": "^3.7.2",
"@tiptap/starter-kit": "^3.7.2",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.5.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"i18next": "^24.2.2",
"jsdom": "^22.1.0",
"jspdf": "^2.5.1",
"lucide-react": "^0.358.0",
"next-themes": "^0.4.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.58.1",
"react-i18next": "^15.4.0",
"react-magic-motion": "^1.1.2",
"react-router": "^6.22.3",
"react-router-dom": "^6.22.3",
"save-dev": "^0.0.1-security",
"sonner": "^2.0.3",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"vitest": "^0.34.6",
"zustand": "^5.0.9"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@semantic-release/github": "^12.0.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^0.34.6",
"autoprefixer": "^10.4.18",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"postcss": "^8.4.35",
"prettier": "3.2.5",
"semantic-release": "^25.0.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.0.0"
}
}