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",
"@vercel/kv": "^1.0.0",
"@vercel/og": "^0.5.20",
"ai": "^2.2.25",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"focus-trap-react": "^10.2.3",
"framer-motion": "^10.16.12",
2023-11-26 12:07:13 -06:00
"geist": "^1.1.0",
2023-11-26 12:32:01 -06:00
"nanoid": "^5.0.3",
"next": "14.0.4-canary.17",
"next-auth": "5.0.0-beta.3",
2023-05-19 12:33:56 -04:00
"next-themes": "^0.2.1",
2023-11-26 12:32:01 -06:00
"openai": "^4.20.0",
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",
"@types/node": "^20.10.0",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@types/react-syntax-highlighter": "^15.5.10",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.2"
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
}