-
-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: website components #8600
Changes from all commits
b216dc3
adcee1b
06edbab
bd18e01
29b53da
53fcfe6
9763454
9ac5252
7628e25
4460c57
4a4a712
3da8cd7
11ae47d
29a43cc
6ecd32e
ce6a951
fadfc7a
d89b718
1bedead
fb35348
0d93971
24b558f
fd8dd87
c75efe5
f8f193e
ec4c57f
e746457
76c9c54
649ca3a
870038e
fb903ac
0549604
81f4a42
54d9155
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,52 +41,50 @@ | |
"dependencies": { | ||
"@discordjs/api-extractor-utils": "workspace:^", | ||
"@discordjs/scripts": "workspace:^", | ||
"@emotion/react": "^11.10.4", | ||
"@emotion/server": "^11.10.0", | ||
"@mantine/core": "^5.2.5", | ||
"@mantine/hooks": "^5.2.5", | ||
"@mantine/next": "^5.2.5", | ||
"@mantine/nprogress": "^5.2.5", | ||
"@mantine/spotlight": "^5.2.5", | ||
"@microsoft/api-extractor-model": "7.24.0", | ||
"@microsoft/tsdoc": "0.14.1", | ||
"@vscode/codicons": "^0.0.32", | ||
"ariakit": "^2.0.0-next.41", | ||
"minisearch": "^5.0.0", | ||
"next": "^12.2.5", | ||
"next-mdx-remote": "^4.1.0", | ||
"next-progress": "^2.2.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nextjs-progressbar is a good alternative with 30x more downloads There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Theres actually a few differences between the 2 packages, one would be allowing full custom css, which |
||
"next-themes": "^0.2.0", | ||
"react": "^18.2.0", | ||
"react-custom-scrollbars-2": "^4.5.0", | ||
"react-dom": "^18.2.0", | ||
"react-icons": "^4.4.0", | ||
"react-syntax-highlighter": "^15.5.0", | ||
"react-use": "^17.4.0", | ||
"rehype-ignore": "^1.0.1", | ||
"rehype-pretty-code": "^0.3.2", | ||
"rehype-raw": "^6.1.1", | ||
"rehype-slug": "^5.0.1", | ||
"remark-gfm": "^3.0.1", | ||
"sharp": "^0.30.7", | ||
"sharp": "^0.31.0", | ||
"shiki": "^0.11.1", | ||
"swr": "^1.3.0" | ||
}, | ||
"devDependencies": { | ||
"@testing-library/react": "^13.4.0", | ||
"@testing-library/user-event": "^14.4.3", | ||
"@types/node": "^16.11.56", | ||
"@types/node": "^16.11.57", | ||
"@types/react-dom": "^18.0.6", | ||
"@types/react-syntax-highlighter": "^15.5.5", | ||
"@unocss/cli": "^0.45.15", | ||
"@unocss/preset-web-fonts": "^0.45.15", | ||
"@unocss/reset": "^0.45.15", | ||
"@vitejs/plugin-react": "^2.0.1", | ||
"@vitest/coverage-c8": "^0.23.0", | ||
"@vitejs/plugin-react": "^2.1.0", | ||
"@vitest/coverage-c8": "^0.23.1", | ||
"concurrently": "^7.3.0", | ||
"eslint": "^8.23.0", | ||
"eslint-config-neon": "^0.1.33", | ||
"happy-dom": "^6.0.4", | ||
"prettier": "^2.7.1", | ||
"prettier-plugin-tailwindcss": "^0.1.13", | ||
"typescript": "^4.8.2", | ||
"unocss": "^0.45.15", | ||
"vercel": "^28.2.2", | ||
"vitest": "^0.23.0" | ||
"vitest": "^0.23.1" | ||
}, | ||
"engines": { | ||
"node": ">=16.9.0" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend setting it to the exact version (without
^
) while it's in alpha so that you don't get breaking changes by mistake.