CoolFace
Apppublic

SpacesExamples/fastapi-nextjs-static

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
package.json28 linesDownload Raw Back to frontend
1{2  "name": "frontend",3  "version": "0.1.0",4  "private": true,5  "scripts": {6    "dev": "next dev",7    "build": "next build",8    "start": "next start",9    "lint": "next lint"10  },11  "dependencies": {12    "react": "^18",13    "react-dom": "^18",14    "next": "14.0.3"15  },16  "devDependencies": {17    "typescript": "^5",18    "@types/node": "^20",19    "@types/react": "^18",20    "@types/react-dom": "^18",21    "autoprefixer": "^10.0.1",22    "postcss": "^8",23    "tailwindcss": "^3.3.0",24    "eslint": "^8",25    "eslint-config-next": "14.0.3"26  }27}28