setup turborepo and web app with fumadocs

This commit is contained in:
Aman Varshney
2025-02-12 00:45:40 +05:30
parent 8a77febd7e
commit 8b730b9adc
38 changed files with 1689 additions and 140 deletions

31
apps/web/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "web",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"postinstall": "fumadocs-mdx"
},
"dependencies": {
"next": "15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"fumadocs-ui": "15.0.6",
"fumadocs-core": "15.0.6",
"fumadocs-mdx": "11.5.3"
},
"devDependencies": {
"@types/node": "22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"typescript": "^5.7.3",
"@types/mdx": "^2.0.13",
"@tailwindcss/postcss": "^4.0.5",
"tailwindcss": "^4.0.5",
"postcss": "^8.5.1",
"eslint": "^8",
"eslint-config-next": "15.1.6"
}
}