-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.16 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
{
"name": "portfolio",
"version": "1.0.0",
"private": true,
"scripts": {
"article": "node lib/scripts/generate-article-template.js",
"build": "prisma generate && next build",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"postbuild": "next-sitemap",
"postinstall": "prisma generate",
"pre-commit": "",
"pre-push": "pnpm run lint",
"prepare": "git config core.hooksPath .git-hooks",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@prisma/client": "5.22.0",
"@sentry/nextjs": "8.52.0",
"@tailwindcss/typography": "0.5.16",
"@vercel/analytics": "1.4.1",
"clsx": "2.1.1",
"next": "14.2.23",
"next-themes": "0.4.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"swr": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/gtag.js": "0.0.20",
"@types/node": "22.12.0",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-next": "13.5.8",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "4.6.2",
"gray-matter": "4.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"next-mdx-remote": "5.0.0",
"next-sitemap": "4.2.3",
"postcss": "8.5.1",
"prettier": "3.4.2",
"prisma": "5.22.0",
"reading-time": "1.5.0",
"rehype": "13.0.2",
"rehype-autolink-headings": "7.1.0",
"rehype-code-titles": "1.2.0",
"rehype-prism-plus": "2.0.0",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.3"
}
}