-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
63
64
65
66
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"e2e:test": "playwright test",
"e2e:open": "playwright test --ui",
"e2e:codegen": "playwright codegen",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^3.4.2",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@react-email/components": "^0.0.19",
"@react-email/tailwind": "^0.0.18",
"@t3-oss/env-nextjs": "^0.11.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^11.2.10",
"jiti": "^1.21.6",
"lucide-react": "^0.372.0",
"next": "14.2.3",
"posthog-js": "^1.174.2",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.5",
"react-intersection-observer": "^9.10.3",
"react-vertical-timeline-component": "^3.6.0",
"resend": "^3.2.0",
"sharp": "^0.33.4",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.44.1",
"@types/node": "^20",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-vertical-timeline-component": "^3.3.6",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"husky": "^9.0.11",
"pdf-parse": "^1.1.1",
"playwright-ctrf-json-reporter": "^0.0.14",
"postcss": "^8",
"prettier": "^3.3.0",
"prettier-plugin-tailwindcss": "^0.6.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}