forked from alisamadiii/Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.81 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": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-types && npm run format --white && npm run check-lint --fix && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.4.0",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-email/components": "^0.0.17",
"@studio-freight/lenis": "^1.0.33",
"@supabase/supabase-js": "^2.43.1",
"@tanstack/react-query": "^5.35.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"contentlayer": "^0.3.4",
"date-fns": "^3.6.0",
"email-validator": "^2.0.4",
"framer-motion": "11.0.10",
"geist": "^1.3.0",
"limiter": "^2.1.0",
"lottie-react": "^2.4.0",
"lucide-react": "^0.378.0",
"mdast-util-toc": "^7.0.1",
"next": "14.2.3",
"next-contentlayer": "^0.3.4",
"open-graph-scraper": "^6.5.1",
"rc-progress": "^4.0.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.4",
"react-icons": "^5.2.1",
"react-spinners": "^0.13.8",
"react-use-measure": "^2.1.1",
"react-virtualized": "^9.22.5",
"react-wrap-balancer": "^1.1.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^3.0.1",
"resend": "^3.2.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"uniqid": "^5.4.0",
"unist-util-visit": "^5.0.0",
"use-long-press": "^3.2.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-virtualized": "^9.21.30",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"autoprefixer": "^10.4.19",
"encoding": "^0.1.13",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}