-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.88 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"analyze": "ANALYZE=true next build",
"analyze:server": "BUNDLE_ANALYZE=server next build",
"analyze:browser": "BUNDLE_ANALYZE=browser next build",
"prepare": "husky install",
"build:analyze": "npm run analyze && npm run analyze:browser",
"build:production": "NODE_ENV=production next build",
"lighthouse": "lighthouse http://localhost:3000 --output=html --output-path=./lighthouse-report.html --chrome-flags=\"--headless\"",
"lighthouse:mobile": "lighthouse http://localhost:3000 --output=html --output-path=./lighthouse-mobile-report.html --chrome-flags=\"--headless\" --form-factor=mobile",
"performance:test": "npm run build:production && npm run start & sleep 5 && npm run lighthouse && pkill -f 'next start'",
"bundle:size": "npm run build && npx bundlesize",
"performance:audit": "npm run build:production && npm run lighthouse && npm run lighthouse:mobile",
"performance:analyze": "node scripts/performance-analysis.js",
"performance:full": "npm run build:production && npm run performance:analyze && npm run performance:audit",
"deploy:optimize": "node scripts/deploy-optimization.js",
"deploy:prepare": "npm run deploy:optimize && npm run build:production",
"deploy:vercel": "npm run deploy:prepare && vercel --prod"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss,sass}": [
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@gsap/react": "^2.1.2",
"@heroicons/react": "^2.2.0",
"@react-three/drei": "^10.7.2",
"@react-three/fiber": "^9.3.0",
"@react-three/postprocessing": "^3.0.4",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/lodash": "^4.17.20",
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"gsap": "^3.13.0",
"lenis": "^1.3.8",
"lodash": "^4.17.21",
"motion": "^12.23.12",
"next": "15.4.8",
"nodemailer": "^7.0.5",
"ogl": "^1.0.11",
"postprocessing": "^6.37.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"three": "^0.179.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.5.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.179.0",
"chrome-launcher": "^1.2.1",
"eslint": "^9",
"eslint-config-next": "15.4.8",
"husky": "^9.1.7",
"lighthouse": "^11.7.1",
"lint-staged": "^16.1.5",
"puppeteer": "^24.37.3",
"react-fast-marquee": "1.6.5",
"tailwindcss": "^4",
"three-stdlib": "2.36.1",
"typescript": "^5"
}
}