-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.57 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ksfolio",
"version": "0.1.0",
"description": "A minimal portfolio, and blog.",
"homepage": "",
"license": "MIT",
"author": {
"name": "Kshitij Srivastava",
"email": "kshitij.suraj@gmail.com",
"url": "https://github.com/Kshitij978"
},
"contributors": [
{
"name": "Kshitij Srivastava",
"email": "kshitij.suraj@gmail.com",
"url": "https://github.com/Kshitij978"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kshitij978/Portfolio-v2.0.git"
},
"scripts": {
"dev": "next dev -p 1408 --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check-types": "tsc --noEmit --pretty",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"upgrade:next": "npx @next/codemod@latest upgrade latest",
"upgrade:tailwind": "npx @tailwindcss/upgrade@latest",
"prepare": "husky"
},
"dependencies": {
"@bprogress/next": "^3.2.12",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-email/components": "^1.0.1",
"@react-email/render": "^2.0.0",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dayjs": "^1.11.13",
"framer-motion": "^12.23.12",
"fumadocs-core": "^15.7.13",
"jotai": "^2.13.0",
"lucide-react": "^0.536.0",
"motion": "^12.23.12",
"next": "15.4.10",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"ogl": "^1.0.11",
"radix-ui": "^1.4.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.67.0",
"react-markdown": "^10.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"resend": "^6.5.2",
"schema-dts": "^1.1.5",
"shadcn": "^3.3.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"pnpm lint:fix"
],
"src/**/*.{js,jsx,ts,tsx,md,mdx,css,json}": [
"pnpm format:write"
]
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/unist": "^3.0.3",
"eslint": "^9",
"eslint-config-next": "15.4.5",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"rehype-external-links": "^3.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-mdx": "^3.1.0",
"shiki": "^3.13.0",
"strip-indent": "^4.1.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"typescript": "^5",
"unist-builder": "3.0.0",
"unist-util-visit": "^5.0.0"
},
"resolutions": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
},
"engines": {
"node": ">=22.0",
"pnpm": ">=9"
},
"packageManager": "pnpm@10.23.0"
}