-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
68 lines (68 loc) · 1.68 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
{
"private": false,
"name": "portfolio",
"description": "Personal portfolio of Nirmalya Ghosh",
"license": "MIT",
"author": "Nirmalya Ghosh <[email protected]>",
"scripts": {
"build": "next build",
"dev": "next dev",
"release": "release-it",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"contentlayer": "^0.0.27",
"dayjs": "^1.10.7",
"framer-motion": "^4.1.17",
"ga-4-react": "^0.1.281",
"gatsby-remark-vscode": "^3.3.0",
"github-slugger": "^1.4.0",
"next": "11.1.2",
"next-contentlayer": "^0.0.27",
"next-mdx-remote": "^3.0.6",
"next-seo": "^4.28.1",
"preact": "^10.5.15",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"rehype": "^12.0.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-img-size": "^0.0.1",
"remark-code-titles": "^0.1.2",
"remark-external-links": "^9.0.1",
"remark-slug": "^7.0.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^3.3.0",
"@types/github-slugger": "^1.3.0",
"@types/node": "^16.11.1",
"@types/react": "^17.0.30",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"release-it": "^14.11.6",
"typescript": "^4.4.4"
},
"resolutions": {
"esbuild": "0.12.8"
},
"keywords": [
"developer",
"javascript",
"next.js",
"portfolio",
"react"
],
"lint-staged": {
"*.{js,json,css,md,tsx,ts}": [
"prettier --write"
]
}
}