CoolFace
Apppublic

Ditzzy/api

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
package.json60 linesDownload Raw Back to root
1{2  "name": "ditzzy_api",3  "version": "1.0.0",4  "main": "index.js",5  "scripts": {6    "dev": "NODE_ENV=development tsx src/server/index.ts",7    "start": "NODE_ENV=production node dist/index.cjs",8    "check": "tsc",9    "build": "tsx _build/script.ts"10  },11  "author": "Ditzzy",12  "license": "MIT",13  "type": "module",14  "devDependencies": {15    "@tailwindcss/typography": "^0.5.19",16    "@tailwindcss/vite": "^4.1.18",17    "@types/express": "^5.0.6",18    "@types/node": "^25.0.7",19    "@types/prismjs": "^1.26.5",20    "@types/react": "^19.2.8",21    "@types/react-dom": "^19.2.3",22    "@vitejs/plugin-react": "^5.1.2",23    "autoprefixer": "^10.4.23",24    "chokidar": "^5.0.0",25    "esbuild": "^0.27.2",26    "glob": "^13.0.0",27    "postcss": "^8.4.47",28    "tailwindcss": "^3.4.17",29    "tsx": "^4.21.0",30    "typescript": "^5.9.3",31    "vite": "^7.3.1"32  },33  "dependencies": {34    "@radix-ui/react-dialog": "^1.1.15",35    "@radix-ui/react-select": "^2.2.6",36    "@radix-ui/react-separator": "^1.1.8",37    "@radix-ui/react-slot": "^1.2.4",38    "@radix-ui/react-tabs": "^1.1.13",39    "@upstash/redis": "^1.36.1",40    "axios": "^1.13.2",41    "cheerio": "^1.1.2",42    "class-variance-authority": "^0.7.1",43    "clsx": "^2.1.1",44    "crypto-js": "^4.2.0",45    "express": "^5.2.1",46    "file-type": "^21.3.0",47    "form-data": "^4.0.5",48    "framer-motion": "^12.26.2",49    "lucide-react": "^0.562.0",50    "multer": "^2.0.2",51    "prismjs": "^1.30.0",52    "react": "^19.2.3",53    "react-dom": "^19.2.3",54    "react-router-dom": "^7.12.0",55    "recharts": "^3.6.0",56    "tailwind-merge": "^3.4.0",57    "tailwindcss-animate": "^1.0.7"58  }59}60