CoolFace
Apppublic

fullstuckdev/sql-agent

sourceHugging Facemitupdated 2y agoView on Hugging Face
1likes
package.json37 linesDownload Raw Back to root
1{2  "name": "text-to-sql",3  "version": "0.1.0",4  "private": true,5  "scripts": {6    "dev": "next dev --turbopack --port 3001",7    "build": "next build",8    "start": "next dev --turbopack --port 3001",9    "lint": "next lint"10  },11  "dependencies": {12    "@huggingface/inference": "^2.8.1",13    "@langchain/community": "^0.0.31",14    "@langchain/openai": "^0.0.14",15    "@tabler/icons-react": "^3.22.0",16    "chart.js": "^4.4.6",17    "framer-motion": "^11.11.17",18    "langchain": "^0.1.37",19    "mysql2": "^3.11.4",20    "next": "15.0.3",21    "react": "^18.2.0",22    "react-chartjs-2": "^5.2.0",23    "react-dom": "^18.2.0",24    "zod": "^3.22.4"25  },26  "devDependencies": {27    "@types/node": "^20",28    "@types/react": "^18",29    "@types/react-dom": "^18",30    "eslint": "^8",31    "eslint-config-next": "15.0.3",32    "postcss": "^8",33    "tailwindcss": "^3.4.1",34    "typescript": "^5"35  }36}37