-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1002 Bytes
/
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
{
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "npx serve@latest out",
"export": "next export",
"pagefind-deploy": "pagefind --site out",
"deploy": "npm run build && npm run pagefind-deploy"
},
"dependencies": {
"gray-matter": "^4.0.3",
"jsdom": "^24.0.0",
"next": "15.1.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"rehype-pretty-code": "^0.13.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"shiki": "^1.3.0",
"unified": "^11.0.4"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/jsdom": "^21.1.6",
"@types/react": "19.0.2",
"autoprefixer": "^10.4.19",
"pagefind": "^1.1.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"overrides": {
"@types/react": "19.0.2"
}
}