-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 KB
/
package.json
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
{
"name": "study-drift",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && rm -rf ./.next/cache",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:ci": "vitest run",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@azure/openai": "^2.0.0-beta.2",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@heroicons/react": "^2.1.5",
"@material-tailwind/react": "^2.1.10",
"@mdxeditor/editor": "^3.14.0",
"@next/third-parties": "^15.0.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@reduxjs/toolkit": "^2.3.0",
"@tanstack/react-table": "^8.20.5",
"bcrypt": "^5.1.1",
"cache-manager": "^6.1.1",
"cacheable": "^1.8.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^4.1.0",
"jose": "^5.9.6",
"keyv": "^5.1.2",
"lucide-react": "^0.453.0",
"mongodb": "^6.10.0",
"mongodb-memory-server": "^10.1.2",
"nanoid": "^5.0.7",
"next": "15.0.1",
"next-auth": "^4.24.10",
"openai": "^4.68.4",
"prismjs": "^1.29.0",
"react": "^18",
"react-day-picker": "^9.2.0",
"react-dom": "^18",
"react-hotkeys-hook": "^4.5.1",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.7",
"@types/prismjs": "^1.26.5",
"@types/react": "18.2.42",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^8",
"eslint-config-next": "15.0.1",
"jsdom": "^25.0.1",
"postcss": "^8",
"rollup": ">=4.22.4",
"tailwindcss": "^3.4.14",
"typescript": "^5",
"vite": ">=5.4.10",
"vitest": "^2.1.3"
}
}