-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 KB
/
package.json
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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"lint:fix": "next lint --fix",
"pretty": "prettier --write .",
"typecheck": "tsc --noEmit",
"sanitize": "prettier --write . && eslint --fix . && tsc --noEmit",
"postbuild": "next-sitemap --config next-sitemap.config.js"
},
"dependencies": {
"@hookform/resolvers": "3.9.1",
"@vercel/analytics": "^1.4.1",
"autoprefixer": "10.4.14",
"canvas-confetti": "1.9.3",
"class-variance-authority": "0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.13.1",
"imask": "6.6.3",
"lucide-react": "^0.460.0",
"next": "14.2.16",
"next-sitemap": "^4.1.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.53.2",
"react-hot-toast": "2.4.1",
"react-icons": "^4.10.1",
"react-intersection-observer": "^9.14.1",
"react-number-format": "5.4.0",
"resend": "4.0.1-alpha.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "1.0.7",
"zod": "3.23.8"
},
"devDependencies": {
"@builder.io/partytown": "^0.8.0",
"@types/canvas-confetti": "1.6.4",
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"eslint": "8.44.0",
"eslint-config-next": "14.2.16",
"postcss": "8.4.25",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "3.4.1",
"typescript": "5.1.6"
}
}