-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.11 KB
/
package.json
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
{
"name": "blog-next",
"version": "1.0.0",
"packageManager": "[email protected]",
"scripts": {
"prepare": "simple-git-hooks",
"generate": "esno ./scripts/index.ts",
"dev": "next dev",
"build": "next build --experimental-app-only",
"build:gitpage": "cross-env GITPAGE=true next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@plumbiu/react-store": "^0.9.3",
"@react-three/fiber": "9.0.0-alpha.8",
"@shikijs/transformers": "^1.24.2",
"@vercel/analytics": "^1.4.1",
"hast-util-to-jsx-runtime": "^2.3.2",
"hast-util-to-string": "^3.0.1",
"is-plain-obj": "^4.1.0",
"lil-gui": "^0.20.0",
"next": "14.2.20",
"next-view-transitions": "^0.3.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-photo-album": "^3.0.2",
"remark-directive": "^3.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"sharp": "^0.33.5",
"shiki": "^1.23.0",
"shiki-class-transformer": "^0.2.0",
"sucrase": "^3.35.0",
"terser": "^5.36.0",
"three": "^0.171.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@next/bundle-analyzer": "14.2.20",
"@nimpl/classnames-minifier": "^4.0.0",
"@types/hast": "^3.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.4",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/three": "^0.170.0",
"@types/unist": "^3.0.3",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"esno": "^4.8.0",
"feed": "^4.2.2",
"js-yaml": "^4.1.0",
"jstoxml": "^5.0.2",
"mdast-util-directive": "^3.0.0",
"picocolors": "^1.1.1",
"postcss-nested": "^7.0.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2"
},
"pnpm": {
"patchedDependencies": {
"react-photo-album": "patches/react-photo-album.patch"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm generate"
},
"browserslist": [
"> 0.2%",
"not dead",
"not op_mini all"
]
}