-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "portfolio",
"version": "1.0.0",
"author": {
"name": "Vinay Kulkarni",
"email": "Kulkarnivinay621@gmail.com",
"url": "https://vinaykulka.vercel.app"
},
"repository": {
"url": "https://github.com/vinaykulk621/portfolio"
},
"homepage": "https://vinaykulka.vercel.app",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --write \"**/*.{js,ts,tsx,mdx,json}\" --cache",
"restart": "rm -rf node_modules/ .next/ .contentlayer/ && npm i -f && npm run dev"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.6",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"eslint": "8.33.0",
"eslint-config-next": "^13.5.4",
"lucide-react": "^0.363.0",
"next": "^13.5.4",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"nextjs-toploader": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resizable-panels": "^1.0.4",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.10.0",
"rehype-slug": "^5.1.0",
"remark-code-import": "^1.2.0",
"remark-gfm": "^3.0.1",
"shiki": "^0.14.3",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.6"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"husky": "^8.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.4"
}
}