-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"prettier": "bunx prettier --check --write .",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"dependencies": {
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"motion": "^12.42.2",
"next": "16.2.10",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-icons": "^5.7.0",
"react-resizable-panels": "^2.1.7",
"react-responsive-carousel": "^3.2.23",
"react-simple-typewriter": "^5.0.1",
"sharp": "^0.34.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "^9.24.0",
"eslint-config-next": "16.2.10",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}
}