-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "llm-api-sentinel",
"version": "2.6.2",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"clean": "next clean",
"test": "jest",
"test:watch": "jest --watch",
"build:functions": "cd functions && npm run build",
"deploy:functions": "cd functions && npm run deploy",
"serve:functions": "cd functions && npm run serve"
},
"dependencies": {
"@google/genai": "^1.17.0",
"@hookform/resolvers": "^5.2.1",
"@supabase/supabase-js": "^2.107.0",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"express": "^5.2.1",
"lucide-react": "^0.553.0",
"motion": "^12.23.24",
"next": "^14.2.13",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^3.8.0",
"tailwind-merge": "^3.3.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "4.1.11",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.37",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.13",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"tailwindcss": "4.1.11",
"ts-jest": "^29.4.6",
"tw-animate-css": "^1.4.0",
"typescript": "5.9.3"
}
}