-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.31 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
{
"name": "vishwajeet-portfolio",
"version": "3.0.0",
"description": "Viswajeet's portfolio website.",
"author": "Vishwajeet",
"license": "MIT",
"homepage": "https://vishwaj33t.vercel.app",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"build-stats": "cross-env ANALYZE=true next build",
"predev": "yarn clean && prisma generate && contentlayer2 build --clearCache",
"prebuild": "yarn predev",
"clean": "rimraf .next && rimraf dist && rimraf out && rimraf .contentlayer",
"lint": "next lint",
"check-types": "tsc --noEmit --pretty",
"prepare": "husky",
"prisma:generate": "npx prisma generate",
"prisma:studio": "npx prisma studio"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.20.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@sentry/nextjs": "^8.33.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@vercel/analytics": "^1.3.1",
"class-variance-authority": "^0.7.0",
"cmdk": "1.0.0",
"contentlayer2": "^0.5.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"framer-motion": "^11.11.4",
"lucide-react": "^0.451.0",
"next": "^14.2.15",
"next-auth": "4.24.8",
"next-contentlayer2": "^0.5.1",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-medium-image-zoom": "^5.2.10",
"rss": "^1.2.2",
"swr": "^2.2.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@emotion/is-prop-valid": "^1.3.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/remove-markdown": "^0.3.4",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-unused-imports": "^4.1.4",
"file-loader": "^6.2.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"million": "^3.1.11",
"mini-svg-data-uri": "^1.4.4",
"plaiceholder": "^3.0.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.20.0",
"reading-time": "^1.5.0",
"rehype": "^13.0.2",
"rehype-accessible-emojis": "^0.3.2",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remove-markdown": "^0.5.5",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"shiki": "^1.22.0",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
}
}