-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.82 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.82 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
{
"name": "@hinear/web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --webpack",
"start": "next start",
"analyze": "ANALYZE=true pnpm build",
"typecheck": "next typegen && tsc --noEmit -p tsconfig.typecheck.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@supabase/ssr": "^0.9.0",
"@supabase/storage-js": "^2.100.0",
"@supabase/supabase-js": "^2.99.2",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-query-devtools": "^5.95.2",
"@tiptap/extension-image": "^3.20.5",
"@tiptap/extension-link": "^3.20.5",
"@tiptap/extension-placeholder": "^3.20.5",
"@tiptap/extension-task-item": "^3.20.5",
"@tiptap/extension-task-list": "^3.20.5",
"@tiptap/react": "^3.20.5",
"@tiptap/starter-kit": "^3.20.5",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"lucide-react": "^0.577.0",
"next": "16.2.0",
"nodemailer": "^8.0.4",
"react": "19.2.4",
"react-datepicker": "^9.1.0",
"react-dom": "19.2.4",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@biomejs/biome": "^2.2.4",
"@chromatic-com/storybook": "^5.0.2",
"@next/bundle-analyzer": "^16.2.1",
"@serwist/next": "^9.5.7",
"@storybook/addon-a11y": "^10.3.1",
"@storybook/addon-docs": "^10.3.1",
"@storybook/addon-onboarding": "^10.3.1",
"@storybook/addon-vitest": "^10.3.1",
"@storybook/nextjs-vite": "^10.3.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/nodemailer": "^7.0.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/web-push": "^3.6.4",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "4.1.0",
"@vitest/coverage-v8": "4.1.0",
"babel-loader": "^10.1.1",
"husky": "^9.1.7",
"jsdom": "^29.0.0",
"lint-staged": "^16.4.0",
"msw": "^2.12.13",
"playwright": "^1.58.2",
"serwist": "^9.5.7",
"storybook": "^10.3.1",
"tailwindcss": "^4.0.0",
"tsx": "^4.20.5",
"typescript": "^5",
"vite": "^8.0.1",
"vitest": "^4.1.0",
"web-vitals": "^5.2.0"
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
}
}