-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.74 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
60
61
62
{
"name": "markbase",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest",
"test:e2e": "pnpm build && playwright test",
"test:e2e:headed": "pnpm build && playwright test --headed"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.69",
"@ai-sdk/google": "^3.0.63",
"@ai-sdk/openai": "^3.0.53",
"@tailwindcss/typography": "0.5.0-alpha.3",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"ai": "^6.0.160",
"diff": "^8.0.4",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"jose": "^6.2.2",
"nanoid": "^5.1.7",
"next": "16.2.2",
"next-auth": "5.0.0-beta.30",
"postgres": "^3.4.9",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.3",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"jsdom": "^29.0.2",
"tailwindcss": "^4",
"testcontainers": "^11.13.0",
"tsx": "^4.21.0",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.3"
}
}