-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "chatgpt-minimal",
"version": "0.1.0",
"private": true,
"author": "blrchen",
"homepage": "https://github.com/blrchen/chatgpt-minimal",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:e2e:clean": "rm -rf _generated/screenshots/* _generated/playwright/test-results _generated/playwright/report _generated/playwright/results.json",
"test:e2e": "npm run test:e2e:clean && playwright test",
"test:e2e:headed": "npm run test:e2e:clean && playwright test --headed",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docker:build": "docker build -f Dockerfile -t chatgpt-minimal:latest ."
},
"dependencies": {
"@ai-sdk/azure": "3.0.42",
"@ai-sdk/openai": "3.0.41",
"@ai-sdk/react": "3.0.143",
"@vercel/analytics": "^2.0.1",
"ai": "6.0.141",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.553.0",
"next": "16.2.1",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"use-stick-to-bottom": "^1.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@playwright/test": "1.58.2",
"@tailwindcss/postcss": "^4.1.4",
"@types/node": "^20.17.10",
"@types/react": "19.2.4",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.1",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.1",
"tailwindcss": "^4.1.4",
"typescript": "^5.7.2"
}
}