-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "nextjs-14-mail-form",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prod_start": "NODE_ENV=production node server.js"
},
"dependencies": {
"@hookform/resolvers": "^5.9.1",
"@radix-ui/react-toast": "^1.2.23",
"@tailwindcss/postcss": "^4.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"express-handlebars": "^9.0.1",
"lucide-react": "^1.33.0",
"next": "^16.3.2",
"nodemailer": "^9.0.5",
"nodemailer-express-handlebars": "^7.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.86.0",
"react-icons": "^5.7.0",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@types/nodemailer": "^8.0.1",
"@types/nodemailer-express-handlebars": "^4.0.6",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/react-google-recaptcha": "^2.1.9",
"eslint": "^10.9.0",
"eslint-config-next": "^16.3.2",
"handlebars-loader": "^1.7.3",
"postcss": "^8.5.26",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2",
"webpack-node-externals": "^3.0.0"
}
}