-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.25 KB
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
{
"name": "railway-docs",
"version": "0.1.0",
"private": false,
"license": "MIT",
"scripts": {
"icons": "tsx src/plugins/icon-spritesheet.ts && tsx src/plugins/page-urls.ts",
"dev": "pnpm icons && next dev --port ${PORT-3001}",
"build": "pnpm icons && next build",
"postbuild": "next-sitemap",
"start": "next start --port ${PORT-3001}",
"clean": "rm -rf .next",
"tsc": "next typegen && tsc -p .",
"search:start": "docker-compose up -d meilisearch",
"search:stop": "docker-compose down",
"search:build": "docker-compose run --rm docs-scraper",
"search:setup": "docker-compose up -d meilisearch && sleep 3 && docker-compose run --rm docs-scraper"
},
"packageManager": "pnpm@11.17.0",
"dependencies": {
"@base-ui/react": "^1.6.0",
"@nanostores/react": "^1.1.0",
"@shikijs/transformers": "^4.3.1",
"class-variance-authority": "^0.7.1",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"copy-to-clipboard": "^4.0.2",
"fathom-client": "^3.1.0",
"gray-matter": "^4.0.3",
"interweave": "^13.1.0",
"meilisearch": "^0.60.0",
"motion": "^12.42.2",
"nanostores": "^1.4.1",
"next": "^16.2.12",
"next-seo": "^7.2.0",
"next-themes": "^0.4.6",
"posthog-js": "^1.407.3",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-is": "^19.2.8",
"sharp": "^0.35.3",
"shiki": "^4.3.1",
"tailwind-merge": "^3.6.0",
"tinykeys": "4.0.0",
"unist-util-visit": "^5.0.0",
"use-local-storage-state": "^20.0.0"
},
"devDependencies": {
"@content-collections/cli": "^0.1.9",
"@content-collections/core": "^0.15.2",
"@content-collections/mdx": "^0.2.2",
"@content-collections/next": "^0.2.11",
"@tailwindcss/postcss": "^4.3.3",
"@types/hast": "^3.0.5",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"next-sitemap": "^4.2.3",
"postcss": "^8.5.23",
"prettier": "^3.9.6",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"zod": "^4.4.3"
},
"engines": {
"node": ">=24 <25"
}
}