-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
{
"name": "portfolio-site",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "next lint --fix",
"postbuild": "next-sitemap --config nextSitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@giscus/react": "^2.2.8",
"@headlessui/react": "^1.7.13",
"@next/bundle-analyzer": "^13.2.4",
"@vercel/analytics": "^0.1.11",
"@vercel/og": "^0.1.0",
"clsx": "^1.2.1",
"esbuild": "^0.17.14",
"gray-matter": "^4.0.3",
"just-throttle": "^4.2.0",
"mdx-bundler": "^9.2.1",
"mongoose": "^6.10.4",
"next": "^13.2.4",
"next-cloudinary": "^5.3.0",
"next-sitemap": "^3.1.55",
"next-themes": "^0.2.1",
"nextjs-progressbar": "^0.0.16",
"react": "^18.2.0",
"react-custom-scrollbars-2": "^4.5.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-tooltip": "^5.10.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"sharp": "^0.32.0",
"swr": "^2.1.1",
"use-ripple-hook": "^1.0.22"
},
"devDependencies": {
"@next/env": "^13.2.4",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.15.11",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5",
"tailwindcss": "latest",
"typescript": "^4.9.5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}