-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.83 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
{
"name": "portfolio",
"version": "0.0.1",
"license": "GPL-3.0",
"engines": {
"node": ">=20.x"
},
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"prebuild-test": "yarn gen:hashnode",
"build": "contentlayer build && next build",
"start": "next start",
"lint": "eslint '{components,pages,utils,data,layouts}/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix '{components,pages,utils,data,layouts}/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --check \"{components,data,pages,styles,utils,layouts}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"format:fix": "prettier --write \"{components,data,pages,styles,utils,layouts}/**/*.{js,jsx,ts,tsx,css,scss,json,yaml,md}\"",
"types:check": "tsc --pretty --noEmit",
"gen:hashnode": "ts-node scripts/gen-hashnode-data.ts"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@next/eslint-plugin-next": "^14.2.14",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@fontsource/sen": "^5.1.0",
"@fontsource/syncopate": "^5.1.0",
"@giscus/react": "^3.0.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/lqip-modern": "^1.1.7",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"contentlayer": "^0.3.4",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"framer-motion": "^11.11.1",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"hamburger-react": "^2.5.1",
"kbar": "^0.1.0-beta.45",
"lqip-modern": "^2.1.0",
"mdx-bundler": "^10.0.3",
"next": "^14.2.14",
"next-contentlayer": "^0.3.4",
"next-seo": "^6.6.0",
"next-themes": "^0.3.0",
"nextjs-progressbar": "^0.0.16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"shiki": "^1.21.0",
"swiper": "^11.1.14",
"zustand": "^5.0.0-rc.2"
},
"overrides": {
"next-contentlayer": {
"next": "$next"
},
"eslint-config-next": {
"eslint": "$eslint"
},
"react-virtual": {
"react": "$react"
}
}
}