-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.06 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
{
"name": "ahnafnafee",
"version": "1.0.0",
"private": true,
"description": "Portfolio, built with React, Next.js, MDX and Tailwind CSS",
"scripts": {
"dev": "env-cmd -f .env.development.local next dev",
"build": "next build",
"start": "env-cmd -f .env.production.local next start -p 5000",
"analyze": "cross-env ANALYZE=true next build",
"clean:build": "npx rimraf **/.next",
"lint": "next lint",
"lint:fix": "next lint --fix",
"postinstall": "husky install",
"type-check": "tsc --noEmit",
"postbuild": "next-sitemap --config=custom-next-sitemap.js",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,json}\"",
"commit": "cz"
},
"dependencies": {
"@giscus/react": "^2.2.6",
"@headlessui/react": "^1.7.4",
"@supabase/supabase-js": "^2.4.0",
"@tailwindcss/typography": "^0.5.8",
"@vercel/analytics": "^0.1.6",
"@vercel/og": "^0.0.21",
"axios": "^0.26.0",
"clsx": "^1.1.1",
"date-fns": "^2.29.3",
"framer-motion": "^7.1.0",
"htmr": "^1.0.2",
"isomorphic-fetch": "^3.0.0",
"jotai": "^1.13.1",
"mdx-prism": "^0.3.4",
"next": "^13.1.1",
"next-axiom": "^0.16.0",
"next-mdx-remote": "^4.0.3",
"next-pwa": "^5.6.0",
"next-seo": "^5.1.0",
"next-themes": "^0.2.1",
"prism-themes": "^1.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.6.0",
"react-image-lightbox": "^5.1.4",
"sharp": "^0.31.2",
"slugify": "^1.6.5",
"tailwind-merge": "^1.2.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"autoprefixer": "^10.4.13",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.28.0",
"eslint-config-next": "^13.0.7",
"gray-matter": "^4.0.3",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"next-sitemap": "^3.1.42",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.1.5",
"reading-time": "^1.5.0",
"rehype-slug": "^5.0.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"resolutions": {
"prismjs": ">=1.27.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahnafnafee/ahnafnafee.dev.git"
},
"author": "Ahnaf An Nafee",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahnafnafee/ahnafnafee.dev/issues"
},
"homepage": "https://github.com/ahnafnafee/ahnafnafee.dev#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mdx,md,css}": [
"yarn format \"./src/**/*.{js,jsx,ts,tsx,mdx,md,css}\""
]
},
"browserslist": {
"production": [
">0.01%",
"not dead",
"not op_mini all"
],
"development": [
">0.01%",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}