-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "portfolio-website",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"format": "prettier src --write",
"test-build": "tsc",
"lint": "eslint ."
},
"dependencies": {
"@heroui/react": "^2.8.7",
"@tailwindcss/postcss": "^4.1.18",
"autoprefixer": "^10.4.23",
"framer-motion": "12.26.1",
"fs-extra": "^11.3.3",
"humanize-duration": "^3.33.2",
"iron-session": "^8.0.4",
"next": "^16.1.1",
"next-themes": "^0.4.6",
"postcss": "^8.5.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "5.4.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.4",
"zod": "^4.3.5"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/humanize-duration": "^3.27.4",
"@types/node": "^25.0.6",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.1",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}