-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"dev:turbopack": "next dev --turbopack",
"build": "next build",
"type-check": "tsc --noEmit",
"start": "next start",
"test": "pnpm run test:run",
"test:run": "vitest --run",
"check": "biome check ./src",
"check:fix": "biome check --write ./src"
},
"dependencies": {
"clsx": "2.1.1",
"markdown-it": "14.1.1",
"markdown-it-prism": "3.0.1",
"microcms-js-sdk": "3.4.0",
"next": "15.5.15",
"nprogress": "0.2.0",
"open-graph-scraper": "^6.10.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-gtm-module": "2.0.11",
"rss": "1.2.2",
"sanitize.css": "13.0.0",
"schema-dts": "^2.0.0",
"usehooks-ts": "3.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@tailwindcss/postcss": "4.2.2",
"@tailwindcss/typography": "0.5.19",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/gtag.js": "0.0.20",
"@types/markdown-it": "14.1.2",
"@types/node": "22.19.17",
"@types/nprogress": "0.2.3",
"@types/react": "19.2.14",
"@types/react-gtm-module": "2.0.4",
"@types/rss": "0.0.32",
"@vitejs/plugin-react": "5.2.0",
"happy-dom": "20.9.0",
"postcss": "8.5.10",
"tailwindcss": "4.2.2",
"typescript": "5.9.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.4"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14"
}
}
}