-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.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
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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "alfie-ai",
"version": "6.0.0",
"private": true,
"author": {
"name": "Ryan Smith",
"email": "rysmith2113@gmail.com",
"url": "https://github.com/Ryan-M-Smith"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx --fix",
"build:professors": "node scripts/build-professors-from-directory.mjs",
"seed:professors": "node scripts/seed-professors.mjs"
},
"dependencies": {
"@google/genai": "^1.49.0",
"@heroui/accordion": "^2.2.29",
"@heroui/button": "2.2.32",
"@heroui/dropdown": "^2.3.32",
"@heroui/form": "^2.1.32",
"@heroui/input": "2.4.33",
"@heroui/link": "2.2.26",
"@heroui/listbox": "2.3.31",
"@heroui/modal": "^2.2.29",
"@heroui/navbar": "2.2.30",
"@heroui/react": "^2.8.10",
"@heroui/select": "^2.4.33",
"@heroui/snippet": "2.2.33",
"@heroui/spinner": "^2.2.29",
"@heroui/styles": "^3.0.2",
"@heroui/switch": "^2.2.27",
"@heroui/system": "2.4.28",
"@heroui/theme": "2.4.26",
"@next/third-parties": "^16.2.3",
"@react-aria/ssr": "3.9.10",
"@react-aria/visually-hidden": "3.8.31",
"@tailwindcss/postcss": "^4.2.2",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"clsx": "^2.1.1",
"diacritics": "^1.3.0",
"framer-motion": "12.38.0",
"gsap": "^3.14.2",
"intl-messageformat": "^11.2.0",
"mongodb": "^7.1.1",
"next": "^16.2.3",
"next-auth": "^4.24.13",
"next-themes": "^0.4.6",
"pdf2json": "^4.0.2",
"react": "19.2.5",
"react-aiwriter": "^1.0.0",
"react-dom": "19.2.5",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"resend": "^6.10.0",
"smartquotes": "^2.3.2",
"three": "^0.183.2",
"vanilla-cookieconsent": "^3.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.1",
"@next/eslint-plugin-next": "16.2.3",
"@react-types/shared": "3.33.1",
"@tailwindcss/typography": "^0.5.19",
"@types/diacritics": "^1.3.3",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.58.1",
"@typescript-eslint/parser": "8.58.1",
"@xenova/transformers": "^2.17.2",
"autoprefixer": "10.4.27",
"eslint": "^9.0.0",
"eslint-config-next": "16.2.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "4.4.1",
"postcss": "8.5.9",
"prettier": "3.8.2",
"sass": "^1.99.0",
"tailwind-variants": "3.2.2",
"tailwindcss": "4.2.2",
"typescript": "6.0.2"
}
}