-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 833 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 833 Bytes
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
{
"name": "nextjs-portfolio-learning",
"version": "3.0.0",
"description": "Comprehensive Next.js 16 portfolio application with Turbopack, React 19.2, and all major concepts",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"next": "16.0.10",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"autoprefixer": "^10.4.20",
"baseline-browser-mapping": "^2.10.0",
"eslint": "^9.16.0",
"eslint-config-next": "^16.0.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2"
},
"engines": {
"node": "24.x"
}
}