-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
92 lines (92 loc) · 2.84 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
{
"name": "portfolio",
"version": "2.0.1",
"private": true,
"description": "Open source portfolio website built with Next.js amd TypeScript.",
"author": "muhammad-fiaz <contact@muhammadfiaz.com>",
"repository": "https://github.com/muhammad-fiaz/portfolio.git",
"homepage": "https://github.com/muhammad-fiaz/portfolio#readme",
"bugs": {
"url": "https://github.com/muhammad-fiaz/portfolio/issues/new"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap --config sitemap.config.js",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@google/generative-ai": "^0.21.0",
"@mantine/carousel": "^5.10.5",
"@mantine/core": "^5.10.5",
"@mantine/hooks": "^5.10.5",
"@nextui-org/avatar": "^2.2.5",
"@nextui-org/button": "^2.2.8",
"@nextui-org/dropdown": "^2.3.8",
"@nextui-org/input": "^2.4.7",
"@nextui-org/react": "^2.6.10",
"@portabletext/react": "^2.0.3",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "18.11.18",
"@types/node-fetch": "^2.6.12",
"@types/nprogress": "^0.2.3",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cookies-next": "^5.0.2",
"devicon": "^2.16.0",
"embla-carousel-react": "^7.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"framer-motion": "^11.15.0",
"graphql-request": "^7.1.2",
"js-cookie": "^3.0.5",
"lucide-react": "^0.462.0",
"next": "^15.1.5",
"next-auth": "^4.24.11",
"node-fetch": "^3.3.2",
"nprogress": "^0.2.0",
"prettier-plugin-tailwindcss": "^0.6.10",
"react": "^19.0.0-rc.1",
"react-dom": "^19.0.0-rc.1",
"react-intersection-observer": "^9.14.1",
"rss-parser": "^3.13.0",
"sharp": "^0.33.5",
"styled-components": "^5.3.11",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "4.9.4",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@types/js-cookie": "^3.0.6",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^13.5.8",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.49",
"postcss-preset-env": "^7.8.3",
"prettier": "^3.4.2"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}