-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "cs-portfolio",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint",
"type-check": "tsc --noEmit",
"vercel-build": "next build"
},
"vercel": {
"buildCommand": "next build",
"outputDirectory": ".next",
"framework": "nextjs@14.2.30",
"installCommand": "npm install"
},
"dependencies": {
"clsx": "^2.0.0",
"framer-motion": "^10.16.0",
"lucide-react": "^0.292.0",
"next": "15.4.10",
"next-themes": "^0.4.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-intersection-observer": "^9.5.0",
"tailwind-merge": "^2.0.0"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.51.0",
"eslint-config-next": "^14.0.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.2.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}