-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.43 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.43 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
{
"name": "isitayush.dev",
"version": "1.1.0",
"private": true,
"scripts": {
"build": "next build",
"clean": "find . -name node_modules -o -name .contentlayer -o -name .next -type d -prune | xargs rm -rf",
"db:gen": "dotenv -e .env.local -- prisma generate",
"db:migrate": "dotenv -e .env.local -- prisma migrate dev",
"db:push": "dotenv -e .env.local -- prisma db push",
"db:reset": "dotenv -e .env.local -- prisma migrate reset",
"dev": "next dev",
"format": "prettier . --check --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "prettier . --write --cache --cache-location='node_modules/.cache/.prettiercache' --log-level=warn",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --cache --cache-location 'node_modules/.cache/.eslintcache' --max-warnings 0",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint . --fix --cache --cache-location 'node_modules/.cache/.eslintcache' --max-warnings 0",
"start": "next start",
"typecheck": "tsc --noEmit",
"typegen": "contentlayer build && pnpm db:gen"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@next/bundle-analyzer": "^14.2.24",
"@prisma/client": "^5.22.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query": "^5.67.1",
"@tanstack/react-query-devtools": "^5.67.1",
"@vercel/og": "^0.6.5",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"contentlayer": "^0.3.4",
"date-fns": "^3.6.0",
"dotenv": "^16.4.7",
"framer-motion": "^11.18.2",
"lucide-react": "^0.372.0",
"next": "14.2.2",
"next-auth": "^4.24.11",
"next-contentlayer": "^0.3.4",
"next-seo": "^6.6.0",
"next-superjson-plugin": "^0.6.3",
"prisma": "^5.22.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-highlight-words": "^0.20.0",
"react-hook-form": "^7.54.2",
"react-hotkeys-hook": "^4.6.1",
"react-wrap-balancer": "^1.1.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"rss": "^1.2.2",
"sharp": "^0.33.5",
"shiki": "^1.29.2",
"superjson": "^2.2.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@contentlayer/source-files": "^0.3.4",
"@next/eslint-plugin-next": "^14.2.24",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@types/react-highlight-words": "^0.16.7",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/style-guide": "^5.2.0",
"autoprefixer": "^10.4.20",
"dotenv-cli": "^7.4.4",
"eslint": "8.48.0",
"eslint-config-next": "^14.2.24",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.10",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.4.5"
},
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}