-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.15 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
{
"name": "vike-docs-template",
"repository": "https://github.com/NicoZweifel/vike-docs-template",
"type": "module",
"license": "MIT",
"author": "Nico Zweifel",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier **/*.{cjs,js,ts,tsx,css,json,md,mdx} --write",
"lint": "eslint **/*.{ts,tsx,mdx} --fix",
"prepare": "husky install",
"lint-staged": "npx lint-staged --allow-empty",
"test": "vitest"
},
"dependencies": {
"@preact/signals": "^1.2.2",
"@unpic/preact": "^0.0.36",
"clsx": "^2.1.0",
"preact": "^10.19.3",
"react": "npm:@preact/compat@^17.1.2",
"react-dom": "npm:@preact/compat@^17.1.2",
"react-feather": "^2.0.10"
},
"devDependencies": {
"mdx-butler": "0.5.6",
"preact-render-to-string": "^6.3.1",
"mdx-bundler": "^10.0.1",
"esbuild": "^0.19.11",
"prism-themes": "^1.9.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"unified": "^11.0.4",
"glob": "^10.3.10",
"@preact/preset-vite": "^2.8.1",
"@testing-library/jest-dom": "^6.2.1",
"@testing-library/preact": "^3.2.3",
"@types/eslint": "^8.56.2",
"@types/mdx": "^2.0.10",
"@types/node": "^20.11.5",
"@types/unist": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-mdx": "^2.3.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vitest": "^0.3.20",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
"vike": "^0.4.159",
"vite": "^5.0.12",
"vite-plugin-full-reload": "^1.1.0",
"vitest": "^1.2.1"
},
"lint-staged": {
"*.{md,json,cjs,js,css}": "prettier --write",
"*.{ts,tsx,mdx}": "eslint --fix"
}
}