-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.96 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
{
"name": "arilog.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "node --experimental-strip-types scripts/build-search-index.mts",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "next typegen && tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:e2e": "playwright test",
"test:guards": "node --experimental-strip-types scripts/test-post-guards.mts"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.1",
"@codemirror/language-data": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@giscus/react": "^3.1.0",
"@next/third-parties": "^16.2.12",
"@octokit/rest": "^22.0.1",
"@radix-ui/react-dialog": "^1.1.21",
"@radix-ui/react-dropdown-menu": "^2.1.22",
"@radix-ui/react-slot": "^1.3.1",
"@uiw/react-codemirror": "^4.25.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"feed": "^6.0.0",
"gray-matter": "^4.0.3",
"image-size": "^2.0.2",
"lucide-react": "^1.25.0",
"next": "16.2.11",
"next-auth": "^5.0.0-beta.32",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^4.3.1",
"subset-font": "^2.5.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.20",
"@types/mdx": "^2.0.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.11",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}