Skip to content

Commit f28b398

Browse files
committed
feat: comment box init
Signed-off-by: Innei <[email protected]>
1 parent 5d5c759 commit f28b398

25 files changed

+650
-429
lines changed

.eslintrc.cjs

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
11
module.exports = {
22
extends: ['@innei/eslint-config-react-ts'],
3+
rules: {
4+
'react-hooks/exhaustive-deps': [
5+
'warn',
6+
{
7+
additionalHooks: 'use.*Selector',
8+
// additionalHooks: 'use(.*?)Selector',
9+
},
10+
],
11+
'prefer-arrow-callback': 'off',
12+
},
313
}

package.json

+12-13
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@
3737
"prod:reload": "pm2 reload ecosystem.config.js"
3838
},
3939
"dependencies": {
40-
"@clerk/nextjs": "4.21.8",
40+
"@clerk/nextjs": "4.21.10",
4141
"@floating-ui/react-dom": "2.0.1",
4242
"@formkit/auto-animate": "1.0.0-pre-alpha.3",
4343
"@mx-space/api-client": "1.4.2",
4444
"@radix-ui/react-dialog": "1.0.4",
4545
"@sentry/nextjs": "7.56.0",
4646
"@sentry/webpack-plugin": "2.3.0",
47-
"@tanstack/react-query": "4.29.15",
48-
"@tanstack/react-query-devtools": "4.29.15",
49-
"@tanstack/react-query-persist-client": "4.29.15",
47+
"@tanstack/react-query": "4.29.19",
48+
"@tanstack/react-query-devtools": "4.29.19",
49+
"@tanstack/react-query-persist-client": "4.29.19",
5050
"@uidotdev/usehooks": "2.0.1",
5151
"@upstash/redis": "1.21.0",
5252
"@vercel/analytics": "1.0.1",
5353
"axios": "1.4.0",
5454
"clsx": "1.2.1",
55-
"daisyui": "3.1.5",
55+
"daisyui": "3.1.6",
5656
"dayjs": "1.11.8",
57-
"foxact": "0.2.9",
58-
"framer-motion": "^10.12.16",
57+
"foxact": "0.2.10",
58+
"framer-motion": "^10.12.17",
5959
"idb-keyval": "6.2.1",
6060
"immer": "^10.0.2",
6161
"jotai": "2.2.1",
@@ -80,19 +80,18 @@
8080
"validator": "13.9.0"
8181
},
8282
"devDependencies": {
83-
"@iconify-json/material-symbols": "1.1.48",
83+
"@iconify-json/material-symbols": "1.1.49",
8484
"@iconify-json/mingcute": "1.1.7",
8585
"@iconify/tailwind": "0.1.3",
86-
"@innei/eslint-config-react-ts": "0.10.1",
87-
"@innei/prettier": "0.10.1",
86+
"@innei/eslint-config-react-ts": "0.10.2",
87+
"@innei/prettier": "0.10.2",
8888
"@next/bundle-analyzer": "13.4.7",
89-
"@sentry/cli": "2.19.1",
9089
"@tailwindcss/typography": "0.5.9",
9190
"@types/color": "3.0.3",
9291
"@types/js-cookie": "3.0.3",
9392
"@types/markdown-escape": "1.1.0",
94-
"@types/node": "20.3.1",
95-
"@types/react": "18.2.13",
93+
"@types/node": "20.3.2",
94+
"@types/react": "18.2.14",
9695
"@types/react-dom": "18.2.6",
9796
"@types/remove-markdown": "0.3.1",
9897
"@types/validator": "13.7.17",

0 commit comments

Comments
 (0)