-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "devflow-v2-record",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.47",
"@hookform/resolvers": "^5.2.2",
"@mdxeditor/editor": "^3.47.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@tailwindcss/postcss": "^4.1.4",
"ai": "^5.0.66",
"bcryptjs": "^3.0.2",
"bright": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cm6-theme-basic-dark": "^0.2.0",
"dayjs": "^1.11.18",
"lucide-react": "^0.545.0",
"mongoose": "^8.19.1",
"next": "15.5.7",
"next-auth": "^5.0.0-beta.25",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"pino": "^10.0.0",
"pino-pretty": "^13.1.2",
"query-string": "^9.3.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.64.0",
"slugify": "^1.6.6",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"packageManager": "npm@11.6.2",
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"eslint": "$eslint"
}
}