-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.43 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
77
78
79
{
"name": "musiker15-website",
"version": "1.0.0",
"private": true,
"description": "Persönliche Website von Moritz Kohm (Musiker15) — Tutorials & Guides",
"license": "SEE LICENSE IN LICENSE.md",
"author": "Moritz Kohm",
"repository": {
"type": "git",
"url": "https://github.com/Musiker15/Website.git"
},
"type": "module",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@11.1.2",
"scripts": {
"dev": "next dev --turbopack -p 3000",
"build": "next build --turbopack",
"start": "next start -p 3000",
"start:e2e": "next start -p 3218",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mdx,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mdx,css}\"",
"validate:content": "tsx scripts/validate-content.ts",
"build:search": "tsx scripts/build-search-index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"prebuild": "pnpm run validate:content && pnpm run build:search"
},
"dependencies": {
"@fontsource-variable/inter": "^5.3.0",
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-navigation-menu": "^1.2.22",
"@radix-ui/react-slot": "^1.3.3",
"clsx": "^2.1.1",
"geist": "^1.7.2",
"get-nonce": "^1.0.1",
"gray-matter": "^4.0.3",
"lucide-react": "^1.33.0",
"next": "^16.3.3",
"next-intl": "^4.14.0",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.5",
"remark-gfm": "^4.0.0",
"shiki": "^4.4.3",
"tailwind-merge": "^2.5.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@types/mdx": "^2.0.14",
"@types/node": "^26.1.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"eslint": "^10.9.1",
"postcss": "^8.5.19",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.68.0",
"vitest": "^4.1.11"
}
}