-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
121 lines (121 loc) · 2.96 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"private": false,
"name": "portfolio",
"description": "Personal portfolio of Nirmalya Ghosh",
"license": "MIT",
"author": "Nirmalya Ghosh <nirmalya.email@gmail.com>",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prepare": "husky install",
"release": "release-it",
"start": "next start",
"prettier": "prettier --write ."
},
"dependencies": {
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/inter": "^5.0.18",
"@highlight-run/next": "^7.5.4",
"@t3-oss/env-nextjs": "^0.10.1",
"@vercel/analytics": "^1.2.2",
"contentlayer2": "^0.4.6",
"dayjs": "^1.11.11",
"framer-motion": "^11.2.3",
"fuse.js": "^7.0.0",
"ga-4-react": "^0.1.281",
"next": "^14.2.3",
"next-contentlayer2": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"rehype": "^13.0.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-code-titles": "^1.2.0",
"rehype-img-size": "^1.0.1",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark-external-links": "^9.0.1",
"remark-gfm": "^4.0.0",
"remark-unwrap-images": "^4.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/github-slugger": "^1.3.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"eslint": "^9.2.0",
"eslint-config-next": "14.2.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"release-it": "^17.2.1",
"typescript": "^5.4.5"
},
"keywords": [
"developer",
"javascript",
"next.js",
"portfolio",
"react"
],
"lint-staged": {
"*.{js,json,css,md,tsx,ts}": [
"prettier --write"
],
"*.mdx": [
"prettier --write --parser mdx"
]
},
"eslintConfig": {
"extends": "next/core-web-vitals"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"trailingComma": "all",
"singleQuote": false,
"semi": true,
"importOrder": [
"^components/(.*)$",
"^lib/(.*)$",
"^app/(.*)$",
"^pages/(.*)$",
"^posts/(.*)$",
"^config/(.*)$",
"^types/(.*)$",
"^public/(.*)$",
"^styles/(.*)$",
"^contentlayer/generated",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": false,
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "changelog.md"
}
},
"hooks": {
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
}
}
}