-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.22 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
{
"name": "portofolio",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 80",
"build": "next build",
"start": "next start",
"sort-imports": "next lint --fix .",
"type-check": "tsc --noEmit",
"format": "prettier --check .",
"lint": "next lint --max-warnings=0",
"test": "jest --watch",
"test:ci": "jest --ci",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^13.0.7",
"@tanstack/match-sorter-utils": "^8.7.6",
"@tanstack/react-table": "^8.7.9",
"@vercel/analytics": "^1.0.1",
"@vercel/og": "^0.6.0",
"clsx": "^2.0.0",
"firebase": "^10.0.0",
"framer-motion": "^11.0.0",
"next": "^13.1.4",
"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"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@tailwindcss/typography": "^0.5.8",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/node": "20.12.11",
"@types/nodemailer": "^6.4.7",
"@types/nprogress": "^0.2.0",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.8",
"eslint": "8.57.0",
"eslint-config-next": "13.5.6",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"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"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}