-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.13 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
{
"private": true,
"scripts": {
"dev": "next",
"pagefind:build:prod": "pagefind --site .next/standalone --output-path .next/static/chunks/app/pagefind",
"pagefind:build:mock": "next build && rm -rf src/mock && pagefind --site .next/standalone --output-path src/mock/pagefind",
"pagefind:cp": "mkdir -p .next/static/chunks/app && cp -r src/mock/pagefind .next/static/chunks/app/pagefind",
"start:pagefind": "wait-on http://localhost:3000 && npm run pagefind:cp",
"pagefind:dev": "concurrently \"npm run dev\" \"npm run start:pagefind\"",
"build": "next build && npm run pagefind:build:prod",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx,.js --fix",
"format": "prettier --write .",
"prepare": "husky",
"lintStaged": "lint-staged"
},
"type": "module",
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --cache --fix",
"prettier --cache --write"
],
"*.{md,json}": [
"prettier --write"
]
},
"dependencies": {
"@giscus/react": "^3.0.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.11",
"@rehype-pretty/transformers": "^0.13.2",
"@types/mdx": "^2.0.13",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"gray-matter": "^4.0.3",
"next": "latest",
"next-mdx-remote": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-external-links": "^3.0.0",
"rehype-format": "^5.0.0",
"rehype-pretty-code": "^0.13.2",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"shiki": "^1.12.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@duchi/eslint-config": "^1.0.11",
"@duchi/prettier-config": "^1.0.10",
"@next/eslint-plugin-next": "^14.2.5",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"pagefind": "^1.1.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2",
"wait-on": "^7.2.0"
}
}