-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 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
{
"name": "personal-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"pages:build": "next-on-pages",
"pages:preview": "wrangler pages dev .vercel/output/static",
"prepare": "husky"
},
"dependencies": {
"@directus/sdk": "^16.0.0",
"clsx": "^2.1.1",
"framer-motion": "^11.0.0",
"lucide-react": "^0.436.0",
"minisearch": "^7.1.0",
"next": "15.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-markdown": "^9.0.0",
"react-zoom-pan-pinch": "^3.7.0",
"rehype-prism-plus": "^2.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"swr": "^2.2.5"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.4",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^15.4.6",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"typescript": "^5",
"vercel": "^44.7.3",
"wrangler": "^4.30.0"
},
"lint-staged": {
"*.{js,ts,tsx,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
}
}