-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.32 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
{
"scripts": {
"dev": "vike dev",
"prebuild": "bun scripts/generate-valid-paths.mjs",
"build": "bun run --filter @surrealdb/docs-search-common build && vike build",
"postbuild": "bun scripts/index-search.ts",
"preview": "vike build && vike preview",
"lint": "biome lint --write .",
"qc": "biome check .",
"qa": "biome check . --write",
"qau": "biome check . --write --unsafe",
"qts": "tsc --noEmit",
"qtsw": "tsc --noEmit --watch",
"validate:links": "check-html-links dist/client",
"search:schema": "bun search/scripts/schema.ts",
"search:index": "bun scripts/index-search.ts",
"search:serve": "bun scripts/search-serve.ts",
"make:lab": "bun scripts/make-lab.ts"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.17.0",
"@inquirer/prompts": "^8.4.2",
"@mantine/core": "^9.1.1",
"@mantine/hooks": "^9.1.1",
"@mantine/spotlight": "^9.0.2",
"@surrealdb/docs-search-common": "workspace:*",
"@surrealdb/ui": "^1.2.13",
"@tanstack/react-query": "^5.100.9",
"@vikejs/hono": "^0.2.0",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hono": "^4.12.23",
"node-html-parser": "^7.1.0",
"openai": "^6.33.0",
"react": "^19",
"react-dom": "^19",
"surrealdb": "^2.0.2",
"vike": "^0.4.259",
"vike-react": "^0.6.23",
"vite-plugin-vercel": "^11.1.0",
"xml2js": "^0.6.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@types/bun": "latest",
"@types/node": "^25.3.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/xml2js": "^0.4.14",
"@vercel/config": "^0.5.0",
"check-html-links": "^0.2.4",
"vike-content-collection": "^0.3.1",
"vike-sitemap-generator": "^2.2.1",
"vite": "^8.0.14",
"@vercel/node": "^5.8.0",
"@vitejs/plugin-react": "^5.1.4",
"sass-embedded": "^1.98.0",
"typescript": "^6.0.3"
},
"overrides": {
"react": "^19",
"react-dom": "^19"
},
"type": "module",
"name": "docs.surrealdb.com",
"module": "index.ts",
"workspaces": [
"search"
]
}