-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.31 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
79
80
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"pw-install": "playwright install chromium",
"lint": "next lint",
"lint:md": "markdownlint '**/*.md' --ignore node_modules --ignore README.md",
"lint:fix:md": "markdownlint '**/*.md' --ignore node_modules --ignore README.md --fix",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix:js": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --write '**/*.{json,js,jsx,ts,tsx,html,css}'",
"fix": "npm run lint:fix:md && npm run lint:fix:js && npm run format",
"gen:blog-relay": "ts-node scripts/generate-blog-relay.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{md}": [
"markdownlint --fix"
],
"*.{json,js,jsx,ts,tsx,html,css}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@stefanprobst/rehype-extract-toc": "^2.2.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"canvas": "^2.11.2",
"clipboard-copy": "^4.0.1",
"clsx": "^2.1.1",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"katex": "^0.16.11",
"next": "14.2.5",
"playwright": "^1.45.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"refractor": "^4.8.1",
"rehype-katex": "^7.0.0",
"rehype-mermaid": "^2.1.0",
"rehype-parse": "^9.0.0",
"rehype-prism-plus": "^2.0.0",
"rehype-react": "^8.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-directive": "^3.0.0",
"remark-flexible-code-titles": "^1.2.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/node": "20.14.11",
"@types/prompts": "^2.4.9",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^9.1.1",
"kleur": "^4.1.5",
"lint-staged": "^15.2.7",
"markdownlint-cli": "^0.41.0",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"ts-node": "^10.9.2",
"typescript": "5.5.3",
"zod": "^3.23.8"
}
}