-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
106 lines (106 loc) · 3.11 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "igorkowalczyk-portfolio",
"description": "My portfolio built on Next.js",
"version": "6.0.0",
"author": "Igor Kowalczyk",
"homepage": "https://igorkowalczyk.dev",
"license": "MIT",
"private": true,
"scripts": {
"start": "next start",
"dev": "pnpm run build:content && next dev",
"dev:turbo": "pnpm run build:content && next dev --turbo --show-all",
"build": "pnpm run build:content && next build",
"build:content": "contentlayer2 build",
"deploy": "pnpm run build && pnpm run start",
"format": "prettier . --write --cache --ignore-unknown --plugin=prettier-plugin-tailwindcss",
"format:check": "prettier . --check --cache --ignore-unknown",
"analyze": "ANALYZE=true next build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "tsx lib/clean.ts"
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@headlessui/tailwindcss": "0.2.2",
"@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-navigation-menu": "^1.2.5",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-switch": "^1.1.3",
"@vercel/analytics": "1.5.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"contentlayer2": "0.5.4",
"dotenv": "16.4.7",
"geist": "1.3.1",
"github-slugger": "2.0.0",
"lucide-react": "0.476.0",
"mdx-bundler": "10.1.0",
"next": "15.2.0",
"next-axiom": "1.9.1",
"next-contentlayer2": "0.5.4",
"next-nprogress-bar": "2.4.7",
"next-themes": "0.4.4",
"next-view-transitions": "0.3.4",
"nprogress": "0.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-plock": "3.4.0",
"reading-time": "1.5.0",
"rehype-autolink-headings": "7.1.0",
"rehype-pretty-code": "0.14.0",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.1",
"server-only": "0.0.1",
"sharp": "0.33.5",
"tailwind-merge": "2.6.0",
"tailwindcss-animate": "1.0.7",
"vaul": "1.1.2",
"zod": "3.24.2"
},
"devDependencies": {
"@igorkowalczyk/eslint-config": "3.0.2",
"@igorkowalczyk/prettier-config": "3.0.2",
"@next/bundle-analyzer": "15.2.0",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/typography": "0.5.16",
"@types/node": "22.13.5",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"autoprefixer": "10.4.20",
"eslint": "9.21.0",
"globby": "14.1.0",
"jiti": "2.4.2",
"postcss": "8.5.3",
"prettier": "3.5.2",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwind-gradient-mask-image": "1.2.0",
"tailwindcss": "3.4.17",
"tailwindcss-text-fill": "0.2.0",
"tsx": "4.19.3",
"typescript": "5.7.3"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/igorkowalczyk/igorkowalczyk.github.io.git"
},
"bugs": {
"url": "https://github.com/igorkowalczyk/igorkowalczyk.github.io/issues"
},
"packageManager": "pnpm@10.5.1",
"pnpm": {
"onlyBuiltDependencies": [
"contentlayer2",
"esbuild",
"protobufjs",
"sharp"
]
}
}