-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.49 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "smartcv",
"version": "1.0.0",
"type": "module",
"private": true,
"description": "SmartCV is a modern and responsive CV generator built with Next.js and Tailwind CSS.",
"author": "m3dev4",
"license": "MIT",
"homepage": "https://smartcv.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/m3dev4/smartcv",
"directory": "/"
},
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"seed": "npx ts-node --esm prisma/seed.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.20.1",
"@headlessui/react": "^2.2.4",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@sparticuz/chromium": "^137.0.1",
"@tiptap/extension-color": "^2.13.0",
"@tiptap/extension-underline": "^2.13.0",
"@tiptap/pm": "^2.13.0",
"@tiptap/react": "^2.13.0",
"@tiptap/starter-kit": "^2.13.0",
"@types/dom-to-image": "^2.6.7",
"@types/dompurify": "^3.0.5",
"@types/multer": "^1.4.13",
"@types/puppeteer": "^5.4.7",
"axios": "^1.10.0",
"bcryptjs": "^3.0.2",
"better-auth": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"culori": "^4.0.1",
"date-fns": "^4.1.0",
"docx": "^9.5.1",
"dom-to-image-more": "^3.6.0",
"dompurify": "^3.2.6",
"file-saver": "^2.0.5",
"framer-motion": "^12.16.0",
"html-to-image": "^1.11.13",
"html2canvas": "^1.4.1",
"html2canvas-pro": "^1.5.11",
"html2pdf": "^0.0.11",
"html2pdf-ts": "^1.2.23",
"isomorphic-dompurify": "^2.25.0",
"jsdom": "^26.1.0",
"jspdf": "^3.0.1",
"lucide": "^0.511.0",
"lucide-react": "^0.511.0",
"motion": "^12.14.0",
"next": "15.3.2",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"nodemailer": "^7.0.3",
"pg": "^8.16.0",
"puppeteer": "^24.10.2",
"puppeteer-core": "^24.10.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-rnd": "^10.5.2",
"sonner": "^2.0.5",
"svix": "^1.66.0",
"tailwind-merge": "^3.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"uuid": "^11.1.0",
"vaul": "^1.1.2",
"zod": "^3.25.48"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.27.0",
"@prisma/client": "^6.9.0",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/culori": "^4.0.0",
"@types/file-saver": "^2.0.7",
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^9.27.0",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.2.0",
"prisma": "^6.9.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.0",
"typescript-eslint": "^8.32.1"
}
}