-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "wlrnjs-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"preview": "next build && next start",
"start": "next start",
"test": "bun test src/",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@next/third-parties": "^16.1.6",
"@supabase/supabase-js": "^2.81.1",
"@vercel/analytics": "^1.0.0",
"autoprefixer": "10.4.14",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"next": "16.0.10",
"next-themes": "^0.2.1",
"postcss": "8.4.23",
"react": "19.1.4",
"react-dom": "19.1.4",
"react-markdown": "^10.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.7.0",
"@playwright/test": "^1.58.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.9",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"baseline-browser-mapping": "^2.10.8",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.10",
"happy-dom": "^20.7.0",
"msw": "^2.12.10",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3"
}
}