-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.34 KB
/
package.json
File metadata and controls
98 lines (98 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
{
"name": "bsmhub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--dns-result-order=ipv4first' next dev",
"build": "ESLINT_USE_FLAT_CONFIG=false next build",
"start": "NODE_OPTIONS='--dns-result-order=ipv4first' next start",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint",
"prepare": "husky"
},
"dependencies": {
"@floating-ui/react": "^0.27.16",
"@next/third-parties": "^16.0.3",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@sentry/nextjs": "^10.26.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.76.1",
"@tabler/icons-react": "^3.35.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/line-clamp": "^0.4.4",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-query-devtools": "^5.90.2",
"@tiptap/core": "^3.11.0",
"@tiptap/extension-code-block-lowlight": "^3.11.0",
"@tiptap/extension-highlight": "^3.11.0",
"@tiptap/extension-horizontal-rule": "^3.11.0",
"@tiptap/extension-image": "^3.11.0",
"@tiptap/extension-list": "^3.11.0",
"@tiptap/extension-mathematics": "^3.11.0",
"@tiptap/extension-subscript": "^3.11.0",
"@tiptap/extension-superscript": "^3.11.0",
"@tiptap/extension-table": "^3.11.0",
"@tiptap/extension-table-cell": "^3.11.0",
"@tiptap/extension-table-header": "^3.11.0",
"@tiptap/extension-table-of-contents": "^3.11.0",
"@tiptap/extension-table-row": "^3.11.0",
"@tiptap/extension-text-align": "^3.11.0",
"@tiptap/extension-typography": "^3.11.0",
"@tiptap/extension-youtube": "^3.11.0",
"@tiptap/extensions": "^3.11.0",
"@tiptap/html": "^3.11.0",
"@tiptap/pm": "^3.11.0",
"@tiptap/react": "^3.11.0",
"@tiptap/starter-kit": "^3.11.0",
"@tiptap/static-renderer": "^3.11.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.18",
"dompurify": "^3.3.0",
"google-one-tap": "^1.0.6",
"hast-util-to-html": "^9.0.5",
"immer": "^10.2.0",
"isomorphic-dompurify": "^2.30.1",
"jose": "^6.2.1",
"jsdom": "^27.0.1",
"lexical-rich-text-editor": "github:Team-INSERT/lexical-react#build-dist",
"lodash.throttle": "^4.1.1",
"lowlight": "^3.3.0",
"next": "^15.5.9",
"next-mdx-remote": "^5.0.0",
"nprogress": "^0.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.65.0",
"react-hotkeys-hook": "^5.2.1",
"tailwind-scrollbar": "^3.1.0",
"tiptap-extension-resize-image": "^1.3.2",
"type-fest": "^4.41.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/dompurify": "^3.2.0",
"@types/jsdom": "^27.0.0",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20.19.23",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "15.0.2",
"husky": "^9.1.7",
"jira-prepare-commit-msg": "^1.7.2",
"postcss": "^8.5.6",
"sass": "^1.94.2",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3"
},
"jira-prepare-commit-msg": {
"jiraTicketPattern": "I25-\\d+",
"allowEmptyCommitMessage": false,
"ignoredBranchesPattern": "^(master|main|dev|develop|development|release)$",
"ignoreBranchesMissingTickets": false
}
}