chatbot-template/package.json

69 lines
2.2 KiB
JSON
Raw Normal View History

2023-05-19 12:33:56 -04:00
{
"private": true,
"scripts": {
2023-11-26 19:29:26 -06:00
"dev": "next dev --turbo",
2023-06-02 11:15:04 -04:00
"build": "next build",
2023-05-19 12:33:56 -04:00
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
2023-06-02 15:15:35 -04:00
"type-check": "tsc --noEmit",
2023-06-02 15:21:49 -04:00
"format:write": "prettier --write \"{app,lib,components}/**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"{app,lib,components}**/*.{ts,tsx,mdx}\" --cache"
2023-05-19 12:33:56 -04:00
},
"dependencies": {
2023-11-26 18:34:56 -06:00
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
2023-11-26 12:32:01 -06:00
"@radix-ui/react-dropdown-menu": "^2.0.6",
2023-06-16 15:20:42 +04:00
"@radix-ui/react-label": "^2.0.2",
2023-11-26 12:32:01 -06:00
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
2023-06-07 16:17:59 +04:00
"@radix-ui/react-slot": "^1.0.2",
2023-06-16 15:20:42 +04:00
"@radix-ui/react-switch": "^1.0.3",
2023-11-26 12:32:01 -06:00
"@radix-ui/react-tooltip": "^1.0.7",
"@vercel/analytics": "^1.1.1",
2024-01-04 08:32:32 -06:00
"@vercel/kv": "^1.0.1",
"@vercel/og": "^0.6.2",
"ai": "^2.2.31",
2023-11-26 12:32:01 -06:00
"class-variance-authority": "^0.7.0",
2024-01-04 08:32:32 -06:00
"clsx": "^2.1.0",
2023-11-26 12:32:01 -06:00
"focus-trap-react": "^10.2.3",
"framer-motion": "^10.16.12",
2024-01-04 08:32:32 -06:00
"geist": "^1.2.0",
"nanoid": "^5.0.4",
"next": "14.0.5-canary.38",
"next-auth": "5.0.0-beta.4",
2023-05-19 12:33:56 -04:00
"next-themes": "^0.2.1",
2024-01-04 08:32:32 -06:00
"openai": "^4.24.1",
2023-05-19 12:33:56 -04:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
2023-11-26 12:32:01 -06:00
"react-intersection-observer": "^9.5.3",
2023-05-19 12:33:56 -04:00
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
2023-11-26 12:32:01 -06:00
"react-textarea-autosize": "^8.5.3",
2023-05-19 12:33:56 -04:00
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1"
2023-05-19 12:33:56 -04:00
},
"devDependencies": {
2023-11-26 12:32:01 -06:00
"@tailwindcss/typography": "^0.5.10",
2024-01-04 08:32:32 -06:00
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/react-syntax-highlighter": "^15.5.11",
"@typescript-eslint/parser": "^6.17.0",
2023-11-26 12:32:01 -06:00
"autoprefixer": "^10.4.16",
2024-01-04 08:32:32 -06:00
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.13.1",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.0",
2023-11-26 12:32:01 -06:00
"tailwindcss-animate": "^1.0.7",
2024-01-04 08:32:32 -06:00
"typescript": "^5.3.3"
2023-05-22 10:16:09 -04:00
},
2023-06-22 11:10:08 -07:00
"packageManager": "pnpm@8.6.3"
2023-05-19 12:33:56 -04:00
}