-
Notifications
You must be signed in to change notification settings - Fork 665
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.01 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.01 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
{
"dependencies": {
"@dirtycajunrice/klee": "^1.0.6",
"@mdx-js/loader": "3.1.0",
"@mdx-js/react": "3.1.0",
"@next/mdx": "15.3.8",
"@radix-ui/react-dialog": "1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "1.2.7",
"@scalar/api-reference-react": "^0.7.42",
"@tanstack/react-query": "5.81.5",
"@tryghost/content-api": "^1.11.28",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "4.1.0",
"flexsearch": "^0.7.43",
"geist": "^1.5.1",
"github-slugger": "^2.0.0",
"he": "^1.2.0",
"lucide-react": "0.525.0",
"next": "15.5.14",
"next-themes": "^0.4.6",
"nextjs-toploader": "^1.6.12",
"node-html-markdown": "^1.3.0",
"node-html-parser": "^6.1.13",
"openapi-types": "12.1.3",
"posthog-js": "1.256.1",
"prettier": "3.6.2",
"react": "19.2.1",
"react-children-utilities": "^2.10.0",
"react-dom": "19.2.1",
"react-html-parser": "2.0.2",
"react-markdown": "10.1.0",
"remark-gfm": "4.0.1",
"server-only": "^0.0.1",
"shiki": "3.12.0",
"sonner": "2.0.6",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"thirdweb": "workspace:*",
"tiny-invariant": "^1.3.3",
"typedoc-better-json": "0.9.4"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@next/eslint-plugin-next": "15.3.8",
"@types/flexsearch": "^0.7.42",
"@types/he": "^1.2.3",
"@types/mdx": "^2.0.13",
"@types/node": "22.14.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-html-parser": "^2.0.7",
"@types/tryghost__content-api": "^1.3.16",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"@workspace/ui": "workspace:*",
"autoprefixer": "^10.4.21",
"eslint": "8.57.0",
"eslint-config-biome": "1.9.4",
"eslint-plugin-mdx": "3.4.2",
"eslint-plugin-svg-jsx": "^1.2.4",
"eslint-plugin-tailwindcss": "^3.18.0",
"knip": "5.60.2",
"next-sitemap": "^4.2.3",
"postcss": "8.5.6",
"tailwindcss": "3.4.17",
"tsx": "4.20.3",
"typescript": "5.8.3"
},
"name": "portal",
"private": true,
"scripts": {
"build": "next build",
"format": "biome format ./src --write",
"create-index": "pnpm tsx scripts/createEmptySearchIndex.ts",
"dev": "next dev",
"extract-llm-content": "pnpm tsx scripts/extractLLMData.ts",
"extract-search-data": "pnpm tsx scripts/extractSearchData.ts",
"fix": "biome check ./src --fix && eslint ./src --fix",
"knip": "knip",
"lint": "biome check ./src && knip && eslint ./src",
"postbuild": "pnpm run extract-search-data && pnpm run extract-llm-content && pnpm next-sitemap",
"prebuild": "pnpm run create-index",
"predev": "pnpm run create-index",
"preinstall": "npx only-allow pnpm",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"version": "0.1.0"
}