-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.94 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 3.94 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
129
130
131
132
133
{
"name": "nextjs-with-typescript",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=24.0"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"clean": "rm -rf .next node_modules",
"postbuild": "next-sitemap",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "eslint .",
"prepare": "husky",
"precommit": "lint-staged",
"prettier": "prettier --write .",
"fmt": "pnpm prettier && pnpm lint",
"post-update": "echo \"codesandbox preview only, need an update\" && pnpm update --latest",
"storybook": "cross-env EDITOR=code storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@mantine/core": "^7.15.0",
"@mantine/hooks": "^7.15.0",
"@mantine/notifications": "^7.15.0",
"@mantine/spotlight": "^7.15.0",
"@next/third-parties": "^16.1.1",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.104.0",
"@tabler/icons-react": "^3.28.0",
"@tiptap/extension-code-block-lowlight": "^3.15.3",
"@tiptap/extension-color": "^3.15.3",
"@tiptap/extension-highlight": "^3.15.3",
"@tiptap/extension-link": "^3.15.3",
"@tiptap/extension-placeholder": "^3.15.3",
"@tiptap/extension-subscript": "^3.15.3",
"@tiptap/extension-superscript": "^3.15.3",
"@tiptap/extension-task-item": "^3.15.3",
"@tiptap/extension-task-list": "^3.15.3",
"@tiptap/extension-text-align": "^3.15.3",
"@tiptap/extension-text-style": "^3.15.3",
"@tiptap/extension-underline": "^3.15.3",
"@tiptap/pm": "^3.15.3",
"@tiptap/react": "^3.15.3",
"@tiptap/starter-kit": "^3.15.3",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"html-to-image": "^1.11.11",
"lowlight": "^3.3.0",
"next": "^16.1.5",
"react": "^19.2.5",
"react-dom": "^19.1.0",
"react-hook-form": "^7.60.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"string-width": "^8.2.0",
"swr": "^2.4.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.2",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.3.1",
"@next/eslint-plugin-next": "^16.1.3",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-docs": "10.1.11",
"@storybook/addon-links": "10.1.11",
"@storybook/nextjs-vite": "10.1.11",
"@storybook/react": "^10.1.11",
"@testing-library/jest-dom": "^6.6.3",
"@types/lodash": "^4.17.24",
"@types/node": "^25.2.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.1.0",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "10.1.11",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.3.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^16.3.1",
"lodash": "^4.17.23",
"next-sitemap": "^4.1.8",
"postcss": "^8.5.6",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.3",
"storybook": "10.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.32.0",
"vite": "^7.0.0"
},
"pnpm": {
"overrides": {
"react": "^19.2.5",
"react-dom": "^19.1.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"dompurify": "^3.2.4",
"tmp": "^0.2.4"
},
"ignoredBuiltDependencies": [
"esbuild",
"sharp"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*": [
"prettier --write"
]
}
}