CoolFace
Apppublic

wang-dev/bingo

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
package.json93 linesDownload Raw Back to root
1{2  "name": "bingo",3  "version": "0.2.1",4  "private": true,5  "scripts": {6    "dev": "cross-env DEBUG=bingo next dev --hostname 0.0.0.0",7    "build": "next build",8    "start": "next start",9    "lint": "next lint"10  },11  "dependencies": {12    "@headlessui/react": "^1.7.15",13    "@radix-ui/react-alert-dialog": "^1.0.4",14    "@radix-ui/react-dialog": "^1.0.4",15    "@radix-ui/react-dropdown-menu": "^2.0.5",16    "@radix-ui/react-label": "^2.0.2",17    "@radix-ui/react-select": "^1.2.2",18    "@radix-ui/react-separator": "^1.0.3",19    "@radix-ui/react-slot": "^1.0.2",20    "@radix-ui/react-tooltip": "^1.0.6",21    "autoprefixer": "10.4.14",22    "cheerio": "^1.0.0-rc.12",23    "class-variance-authority": "^0.7.0",24    "clsx": "^2.0.0",25    "debug": "^4.3.4",26    "dotenv": "^16.3.1",27    "eslint": "8.44.0",28    "eslint-config-next": "13.4.9",29    "form-data": "^4.0.0",30    "http-proxy-middleware": "^2.0.6",31    "https-proxy-agent": "^7.0.1",32    "i18next": "^22.5.0",33    "i18next-browser-languagedetector": "^7.0.2",34    "idb-keyval": "^6.2.1",35    "immer": "^9.0.19",36    "inter-ui": "^3.19.3",37    "jotai": "^2.2.1",38    "jotai-immer": "^0.2.0",39    "jotai-location": "^0.5.1",40    "js-base64": "^3.7.5",41    "lodash": "^4.17.21",42    "lodash-es": "^4.17.21",43    "nanoid": "^4.0.2",44    "next": "13.4.9",45    "next-auth": "^4.22.3",46    "next-themes": "^0.2.1",47    "postcss": "8.4.25",48    "react": "18.2.0",49    "react-dom": "18.2.0",50    "react-hot-toast": "^2.4.1",51    "react-intersection-observer": "^9.5.2",52    "react-markdown": "^8.0.7",53    "react-syntax-highlighter": "^15.5.0",54    "react-textarea-autosize": "^8.5.0",55    "react-viewport-list": "^7.1.1",56    "rehype-highlight": "^6.0.0",57    "rehype-stringify": "^9.0.3",58    "remark": "^14.0.3",59    "remark-breaks": "^3.0.3",60    "remark-gfm": "^3.0.1",61    "remark-math": "^5.1.1",62    "remark-parse": "^10.0.2",63    "remark-rehype": "^10.1.0",64    "remark-supersub": "^1.0.0",65    "tailwind-merge": "^1.14.0",66    "tailwind-scrollbar": "^3.0.4",67    "tailwindcss": "3.3.2",68    "typescript": "5.1.6",69    "undici": "^5.22.1",70    "websocket-as-promised": "^2.0.1",71    "ws": "^8.13.0"72  },73  "devDependencies": {74    "@headlessui/tailwindcss": "^0.1.3",75    "@types/debug": "^4.1.8",76    "@types/dom-speech-recognition": "^0.0.1",77    "@types/lodash-es": "^4.17.7",78    "@types/md5": "^2.3.2",79    "@types/node": "20.4.2",80    "@types/react": "18.2.14",81    "@types/react-color": "^3.0.6",82    "@types/react-copy-to-clipboard": "^5.0.4",83    "@types/react-dom": "18.2.7",84    "@types/react-scroll-to-bottom": "^4.2.0",85    "@types/react-syntax-highlighter": "^15.5.6",86    "@types/ws": "^8.5.5",87    "@typescript-eslint/eslint-plugin": "^5.60.1",88    "@typescript-eslint/parser": "^5.60.1",89    "cross-env": "^7.0.3",90    "sass": "^1.62.1"91  }92}93