-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
55
56
57
58
59
60
61
62
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"preview": "next build && next start",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"check:all": "npm run lint:fix && npm run format:write && npm run typecheck",
"postbuild": "next-sitemap",
"prepare": "husky",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@react-email/components": "^0.0.17",
"@react-email/tailwind": "^0.0.16",
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"autoprefixer": "10.4.19",
"clsx": "^2.1.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"framer-motion": "^11.2.3",
"lucide-react": "^0.378.0",
"next": "14.2.3",
"next-sitemap": "^4.2.3",
"postcss": "8.4.38",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.10.2",
"react-vertical-timeline-component": "^3.6.0",
"resend": "^3.2.0",
"sharp": "^0.33.4",
"tailwind-merge": "^2.3.0",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.3",
"@types/react-vertical-timeline-component": "^3.3.6",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"cross-env": "^7.0.3",
"encoding": "^0.1.13",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.14"
}
}