Initialize Next.js project with Ant Design and other dependencies

This commit is contained in:
CPTProgrammer
2026-07-06 07:48:07 +08:00
parent 36f809f676
commit 73ab46cff4
6 changed files with 7602 additions and 1 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@ant-design/icons": "^6.3.2",
"@uiw/react-md-editor": "^4.1.1",
"antd": "^6.5.0",
"next": "^16.2.10",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"use-debounce": "^10.1.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "26.1.0",
"eslint": "^10.6.0",
"typescript": "6.0.3"
}
}