-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "abhay-portfolio",
"version": "1.0.0",
"description": "Personal portfolio website showcasing skills, experience, and projects as a Full-Stack Developer",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:static": "next build",
"preview:static": "npx serve -s out -l 5050",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit -p tsconfig.typecheck.json",
"smoke": "npm run build && node --test scripts/smoke-check.mjs",
"resume:pdf": "node scripts/generate-resume-pdf.js"
},
"dependencies": {
"@emailjs/browser": "^4.1.0",
"@fontsource/outfit": "^5.2.8",
"@studio-freight/lenis": "^1.0.42",
"@studio-freight/react-lenis": "^0.0.47",
"@tabler/icons-react": "^3.40.0",
"autoprefixer": "^10.4.21",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"gsap": "^3.12.0",
"lenis": "^1.3.18",
"lucide-react": "^0.344.0",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"postcss": "^8.5.6",
"puppeteer-core": "^24.40.0",
"typescript": "^5"
},
"keywords": [
"portfolio",
"nextjs",
"react",
"typescript",
"tailwindcss",
"framer-motion",
"fullstack-developer",
"web-development"
],
"author": "Abhay Chaurasiya",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abhay1999/portfolio-website.git"
},
"homepage": "https://abhay-portfolio.vercel.app"
}