LibreChat/client/package.json

104 lines
3.1 KiB
JSON
Raw Normal View History

{
"name": "chatgpt-clone",
"version": "0.2.0",
"description": "",
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"preview-prod": "vite preview",
"build-dev": "Webpack . --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danny-avila/chatgpt-clone.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danny-avila/chatgpt-clone/issues"
},
"homepage": "https://github.com/danny-avila/chatgpt-clone#readme",
"dependencies": {
2023-04-01 12:49:20 -04:00
"@headlessui/react": "^1.7.13",
"@radix-ui/react-alert-dialog": "^1.0.2",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.2",
2023-03-31 16:08:52 -04:00
"@radix-ui/react-hover-card": "^1.0.5",
"@radix-ui/react-label": "^2.0.0",
2023-03-31 13:12:06 -04:00
"@radix-ui/react-slider": "^1.1.1",
2023-03-24 14:46:07 -04:00
"@radix-ui/react-tabs": "^1.0.3",
2023-03-29 03:34:13 +08:00
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
2023-03-06 15:56:25 -05:00
"axios": "^1.3.4",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.3.3",
"crypto-browserify": "^3.12.0",
"lodash": "^4.17.21",
"lucide-react": "^0.113.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lazy-load": "^4.0.1",
2023-03-29 08:19:00 -04:00
"react-markdown": "^8.0.6",
"react-router-dom": "^6.9.0",
2023-03-19 11:25:12 -04:00
"react-string-replace": "^1.1.0",
"react-textarea-autosize": "^8.4.0",
"react-transition-group": "^4.4.5",
"recoil": "^0.7.7",
2023-03-19 01:14:19 -04:00
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
2023-03-22 17:15:32 -04:00
"rehype-raw": "^6.1.1",
2023-03-19 01:14:19 -04:00
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
2023-03-22 16:31:57 -04:00
"remark-supersub": "^1.0.0",
"swr": "^2.0.3",
"tailwind-merge": "^1.9.1",
"tailwindcss-animate": "^1.0.5",
2023-03-24 14:46:07 -04:00
"tailwindcss-radix": "^2.8.0",
"url": "^0.11.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.20.13",
2023-04-01 23:59:16 -04:00
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"babel-plugin-root-import": "^6.6.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^6.7.3",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"path": "^0.12.7",
"postcss": "^8.4.21",
"postcss-loader": "^7.1.0",
"postcss-preset-env": "^8.2.0",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"source-map-loader": "^1.1.3",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
2023-04-01 23:59:16 -04:00
"vite": "^4.2.1",
"vite-plugin-html": "^3.2.0",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
2023-03-06 15:56:25 -05:00
}