-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
{
"private": true,
"scripts": {
"dev": "yarn migrate && yarn post && run-p dev:serve dev:watch",
"build": "next build",
"serve": "npx serve@latest out",
"build:dev": "rm -rf out/ && next build && yarn serve",
"dev:serve": "next dev -p 4000",
"dev:watch": "node ./_scripts/watcher.js",
"post": "node ./_scripts/genFilenameToSlugMap.js",
"postbuild": "next-sitemap",
"migrate": "node ./_scripts/migrate.js"
},
"dependencies": {
"@next/third-parties": "^14.2.5",
"@types/hast": "^3.0.4",
"@types/ws": "^8.5.10",
"chokidar": "^3.6.0",
"classnames": "^2.5.1",
"date-fns": "^3.3.1",
"gray-matter": "^4.0.3",
"jsdom": "^24.1.0",
"next": "14.1.0",
"next-sitemap": "^4.2.3",
"npm-run-all": "^4.1.5",
"react": "^18",
"react-dom": "^18",
"react-toastify": "^10.0.5",
"rehype-external-links": "^3.0.0",
"rehype-pretty-code": "^0.13.2",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-rehype": "^11.1.0",
"sass": "^1.77.8",
"shiki": "^1.6.2",
"styled-components": "^6.1.11",
"unist-util-visit": "^5.0.0",
"ws": "^8.17.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"postcss": "^8.4.38",
"typescript": "^5"
}
}