-
Notifications
You must be signed in to change notification settings - Fork 273
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "solid-docs-next",
"version": "1.0.0",
"private": true,
"description": "Docs for Solid",
"type": "module",
"scripts": {
"sync": "node scripts/collections/index.mjs",
"sync:orama": "pnpm build && node scripts/sync-orama.mjs",
"dev": "pnpm sync && vinxi dev",
"build": "pnpm sync && pnpm build:sitemap && pnpm build:lunaria && NODE_OPTIONS=\"--max-old-space-size=8192\" vinxi build",
"build:sitemap": "node scripts/generateSitemap.js",
"start": "vinxi start",
"e2e": "npx playwright test",
"build:lunaria": "lunaria build",
"preview:lunaria": "lunaria preview",
"check:lint": "eslint .",
"check:types": "tsc --noEmit"
},
"dependencies": {
"@kobalte/core": "^0.13.6",
"@lunariajs/core": "^0.0.31",
"@oramacloud/client": "^1.3.15",
"@solid-primitives/marker": "^0.1.0",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.14.5",
"@solidjs/start": "^1.0.6",
"@vinxi/plugin-mdx": "^3.7.2",
"dotenv": "^16.4.5",
"glob": "^10.4.5",
"gray-matter": "^4.0.3",
"postcss": "^8.4.47",
"rehype-autolink-headings": "^7.1.0",
"rehype-parse": "^9.0.0",
"rehype-slug": "^6.0.0",
"remark-parse": "^11.0.0",
"shiki": "^1.17.6",
"sitemap": "^7.1.2",
"solid-heroicons": "^3.2.4",
"solid-js": "^1.9",
"solid-list": "^0.3.0",
"solid-mdx": "^0.0.7",
"vinxi": "^0.4.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@kobalte/tailwindcss": "^0.9.0",
"@mdx-js/mdx": "^2.3.0",
"@orama/crawly": "^0.0.4",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-plugin-solid": "^0.13.2",
"prettier": "3.2.5",
"rehype-raw": "^7.0.0",
"remark-expressive-code": "^0.33.5",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^3.0.0",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18",
"packageManager": "pnpm@8"
}
}