-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.13 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4.13 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "gtmc",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/techmc-wiki/gtmc.git"
},
"scripts": {
"dev": "next dev",
"build": "tsx scripts/build.ts",
"build:content": "tsx scripts/build-content.ts",
"build:next": "tsx scripts/build-next.ts",
"build:pdf": "tsx scripts/generate-pdf.ts --locale all",
"build:vercel": "tsx scripts/build-vercel.ts",
"analyze": "next experimental-analyze",
"check": "vp check && tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "vp test run",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"fmt": "vp fmt --check",
"fmt:fix": "vp fmt --write",
"generate:manifest": "tsx scripts/generate-article-manifest.ts",
"generate:content": "tsx scripts/generate-article-content.ts",
"generate:glossary": "tsx scripts/generate-glossary-manifest.ts",
"generate:contributors": "tsx scripts/generate-repository-contributor-stats.ts",
"generate:aliases": "tsx scripts/generate-author-aliases.ts",
"articles:init": "git submodule update --init --recursive articles",
"articles:update": "git submodule update --remote articles",
"articles:status": "git submodule status articles",
"glossary:init": "git submodule update --init --recursive glossary",
"glossary:update": "git submodule update --remote glossary",
"glossary:status": "git submodule status glossary",
"prepare:articles": "tsx scripts/prepare-articles-for-build.ts",
"db:migrate:deploy": "prisma migrate deploy",
"postinstall": "tsx scripts/postinstall.ts",
"prepare": "vp config --no-agent"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.3",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/lang-markdown": "^6.5.2",
"@codemirror/language-data": "^6.5.2",
"@codemirror/view": "^6.43.8",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "16.3.0",
"@octokit/rest": "^22.0.1",
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "7.9.1",
"@supabase/supabase-js": "^2.112.2",
"@tanstack/react-virtual": "^3.14.9",
"@uiw/react-codemirror": "^4.25.9",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "^2.7.0",
"@vercel/speed-insights": "^2.0.0",
"browser-image-compression": "^2.0.2",
"clsx": "^2.1.1",
"diff": "^9.0.0",
"gray-matter": "^4.0.3",
"js-yaml": "^5.2.3",
"katex": "^0.18.2",
"mermaid": "^11.16.1",
"mime-types": "^3.0.2",
"minisearch": "^7.2.0",
"motion": "^13.0.0",
"next": "16.3.0",
"next-auth": "5.0.0-beta.32",
"next-intl": "^4.13.5",
"node-diff3": "^3.2.1",
"pangu": "^9.1.0",
"papaparse": "^5.5.4",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"schematic-renderer": "^1.6.1",
"shiki": "^4.4.2",
"strip-markdown": "^6.0.0",
"tailwind-merge": "^3.6.0",
"undici": "^8.10.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.3.0",
"@tailwindcss/postcss": "^4.3.3",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.14",
"@types/mime-types": "^3.0.1",
"@types/node": "^26.2.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.18",
"consola": "^3.4.2",
"dotenv": "^17.4.2",
"gitnexus": "^1.6.9",
"pdf-lib": "^1.17.1",
"picocolors": "^1.1.1",
"pinyin-pro": "^3.28.2",
"playwright": "^1.62.1",
"prisma": "7.9.1",
"rehype-stringify": "^10.0.1",
"remark-rehype": "^11.1.2",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.11",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"vite-plus": "0.2.8"
},
"packageManager": "pnpm@11.20.0+sha512.9a6f330a95b66446ea088faf1521405a8a01f07fde7124cc9958dfed52d4bb436737e65b08f85f37b46fcba375092558ac51262b816844b22f63406ed166bfee"
}