-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "mahata-pages.github.io",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm prebuild && vite",
"prebuild": "tsx scripts/generate-rss.ts && tsx scripts/generate-sitemap.ts",
"build": "tsc -b && vite build",
"lint": "oxlint .",
"fmt": "oxfmt .",
"fmt:check": "oxfmt . --check",
"preview": "vite preview",
"test": "vitest",
"test:ct": "playwright test -c playwright-ct.config.ts",
"test:ct:ui": "playwright test -c playwright-ct.config.ts --ui"
},
"dependencies": {
"@acab/reset.css": "^0.11.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-feather": "^2.0.10",
"react-router": "^7.12.0",
"react-router-dom": "^7.11.0",
"remark": "^15.0.1",
"remark-extract-frontmatter": "^3.2.0",
"remark-frontmatter": "^5.0.0",
"remark-html": "^16.0.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.57.0",
"@playwright/test": "^1.57.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"@vitest/ui": "^4.0.17",
"feed": "^5.2.0",
"oxfmt": "^0.26.0",
"oxlint": "^1.41.0",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.17"
}
}