-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.34 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "adamastor",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "biome lint .",
"format": "biome format .",
"typecheck": "tsc --noEmit",
"email": "email dev --dir components/email --port 3001",
"test": "tsx --test \"lib/**/*.test.ts\""
},
"packageManager": "pnpm@9.5.0",
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.7",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-hover-card": "^1.1.11",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.9",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-email/components": "^1.0.12",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.106.2",
"@tailwindcss/typography": "^0.5.10",
"@tiptap/core": "^2.11.2",
"@tiptap/html": "^3.24.0",
"@uidotdev/usehooks": "^2.4.1",
"@upstash/ratelimit": "^1.0.1",
"@vercel/blob": "^0.22.1",
"@vercel/functions": "^3.6.1",
"autoprefixer": "^10.5.0",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.0",
"cmdk": "^1.0.4",
"date-fns": "^4.4.0",
"date-fns-tz": "^3.2.0",
"eventsource-parser": "^1.1.2",
"highlight.js": "^11.9.0",
"lowlight": "^3.1.0",
"lucide-react": "^0.358.0",
"moment": "^2.30.1",
"next": "16.2.6",
"next-themes": "^0.4.6",
"novel": "^1.0.2",
"posthog-js": "^1.376.5",
"react": "19.2.6",
"react-big-calendar": "^1.19.6",
"react-day-picker": "8.10.1",
"react-dom": "19.2.6",
"react-hook-form": "^7.77.0",
"react-markdown": "^9.0.1",
"resend": "^6.12.4",
"sonner": "^1.7.1",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.10",
"ts-pattern": "^5.0.8",
"use-debounce": "^10.1.1",
"zod": "^3.25.28"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@react-email/preview-server": "5.2.10",
"@types/node": "20.11.24",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"postcss": "^8.5.15",
"react-email": "^5.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.9.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"clean",
"doc",
"feat",
"fix",
"perf",
"ref",
"revert",
"style",
"test"
]
],
"subject-case": [
0,
"always",
"sentence-case"
],
"body-leading-blank": [
2,
"always",
true
],
"body-max-line-length": [
0,
"always",
100
]
}
}
}