forked from railwayapp/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.2 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",
"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": "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@8.10.2",
"dependencies": {
"@base-ui/react": "^1.0.0",
"@nanostores/react": "^0.4.1",
"@shikijs/transformers": "^3.20.0",
"class-variance-authority": "^0.7.1",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"fathom-client": "^3.1.0",
"gray-matter": "^4.0.3",
"interweave": "^13.1.0",
"meilisearch": "^0.32.3",
"motion": "^12.23.26",
"nanostores": "^0.7.4",
"next": "^15.5.15",
"next-seo": "^5.15.0",
"next-themes": "^0.4.6",
"posthog-js": "^1.242.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"sharp": "^0.32.6",
"shiki": "^3.20.0",
"tailwind-merge": "^3.4.0",
"tinykeys": "1.4.0",
"unist-util-visit": "^5.0.0",
"use-local-storage-state": "^19.1.0"
},
"devDependencies": {
"@content-collections/cli": "^0.1.8",
"@content-collections/core": "^0.13.0",
"@content-collections/mdx": "^0.2.2",
"@content-collections/next": "^0.2.10",
"@tailwindcss/postcss": "^4.1.18",
"@types/hast": "^3.0.4",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^19.2.3",
"next-sitemap": "^3.1.54",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.8.0",
"zod": "^4.3.4"
},
"engines": {
"node": "20"
}
}