-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "hudovich.dev",
"version": "2.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --skipLibCheck --noEmit",
"format:check": "prettier --check --cache .",
"format:write": "prettier --write --cache ."
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@vercel/speed-insights": "^1.0.11",
"clsx": "^2.1.0",
"date-fns": "^3.6.0",
"next": "14.2.10",
"next-plausible": "^3.12.2",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.33.4",
"tailwind-merge": "^2.2.2",
"tua-body-scroll-lock": "^1.4.1"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.11.30",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.3"
}
}