-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.55 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
96
97
98
99
{
"name": "verifysa",
"version": "0.1.0",
"private": true,
"rocketCritical": {
"dependencies": [
"next",
"react",
"react-dom",
"@dhiwise/component-tagger",
"@tailwindcss/typography",
"recharts"
],
"devDependencies": [
"typescript",
"@types/node",
"@types/react",
"@types/react-dom",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"eslint-config-next",
"tailwindcss",
"autoprefixer",
"postcss",
"eslint",
"prettier",
"@netlify/plugin-nextjs"
],
"scripts": [
"dev",
"build",
"start",
"lint",
"lint:fix",
"format",
"serve",
"type-check"
],
"warning": "🚨 CRITICAL: DO NOT REMOVE OR MODIFY ABOVE DEPENDENCIES - Required for Next.js 15 TypeScript app functionality"
},
"scripts": {
"dev": "next dev -p 4028",
"build": "next build",
"start": "next dev -p 4028",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md,json}\"",
"serve": "next start",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@dhiwise/component-tagger": "^1.0.15",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.4.0",
"@rocketnew/llm-sdk": "^1.1.0",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.108.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"axios": "^1.17.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.21",
"dotenv": "^17.4.2",
"framer-motion": "^12.40.0",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.8",
"lucide-react": "^1.17.0",
"next": "^15.5.18",
"nprogress": "^0.2.0",
"openai": "^6.42.0",
"react": "^19.0.3",
"react-dom": "^19.0.3",
"react-hook-form": "^7.78.0",
"recharts": "^2.15.4",
"sonner": "^1.7.4",
"tailwind-merge": "^3.6.0",
"uuid": "^14.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@netlify/plugin-nextjs": "^5.11.1",
"@types/node": "^20",
"@types/react": "19.0.3",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"autoprefixer": "^10.4.2",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.19",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"postcss": "^8.4.8",
"prettier": "^3.8.4",
"tailwindcss": "^3.4.6",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
}
}