-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
72 lines (72 loc) · 1.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
{
"private": false,
"name": "portfolio",
"description": "Personal portfolio of Nirmalya Ghosh",
"license": "MIT",
"author": "Nirmalya Ghosh <[email protected]>",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prepare": "husky install",
"release": "release-it",
"start": "next start"
},
"dependencies": {
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/inter": "^5.0.1",
"@vercel/analytics": "^1.0.1",
"contentlayer": "^0.3.2",
"dayjs": "^1.11.7",
"focus-visible": "^5.2.0",
"framer-motion": "^10.12.16",
"ga-4-react": "^0.1.281",
"github-slugger": "^2.0.0",
"next": "^13.4.4",
"next-contentlayer": "^0.3.2",
"next-seo": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"react-parallax-tilt": "^1.7.142",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-img-size": "^1.0.1",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"remark-external-links": "^9.0.1",
"remark-gfm": "^3.0.1",
"remark-unwrap-images": "^3.0.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/github-slugger": "^1.3.0",
"@types/node": "^20.2.5",
"@types/react": "^18.2.7",
"eslint": "^8.41.0",
"eslint-config-next": "13.4.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"release-it": "^15.10.3",
"typescript": "^5.0.4"
},
"keywords": [
"developer",
"javascript",
"next.js",
"portfolio",
"react"
],
"lint-staged": {
"*.{js,json,css,md,tsx,ts}": [
"prettier --write"
],
"*.mdx": [
"prettier --write --parser mdx"
]
}
}