-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.06 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.06 KB
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
{
"name": "portofolio",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint --max-warnings=0 .",
"lint:fix": "next lint --fix .",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^15.3.8",
"@prequist/lanyard": "^1.1.0",
"@tanstack/match-sorter-utils": "^8.7.6",
"@tanstack/react-table": "^8.7.9",
"@vercel/analytics": "^1.0.1",
"clsx": "^2.0.0",
"firebase": "^10.0.0",
"framer-motion": "^11.0.0",
"next": "^15.3.6",
"next-auth": "^4.19.2",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.1",
"nprogress": "^0.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.0.0",
"swr": "^2.0.1",
"zod": "^4.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"@tailwindcss/typography": "^0.5.8",
"@types/node": "20.12.11",
"@types/nodemailer": "^6.4.7",
"@types/nprogress": "^0.2.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"autoprefixer": "^10.4.8",
"eslint": "^9.31.0",
"eslint-config-next": "^15.3.8",
"husky": "^9.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"lint-staged": "^15.0.0",
"postcss": "^8.4.16",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.0.0",
"rehype-pretty-code": "^0.13.1",
"rehype-slug": "^6.0.0",
"sass": "^1.54.4",
"shiki": "^1.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^5.4.5",
"typescript-eslint": "^8.36.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"volta": {
"node": "24.4.0"
}
}