forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.13 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.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
{
"name": "qwik-docs",
"description": "Qwik Docs Site",
"version": "0.0.1",
"author": "Qwik Team",
"bugs": "https://github.com/QwikDev/qwik",
"devDependencies": {
"@algolia/autocomplete-core": "1.7.4",
"@algolia/client-search": "4.14.3",
"@builder.io/qwik": "npm:@qwik.dev/core@*",
"@builder.io/qwik-city": "npm:@qwik.dev/router@*",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@modular-forms/qwik": "0.29.1",
"@mui/material": "7.3.2",
"@mui/system": "7.3.2",
"@mui/x-data-grid": "8.11.3",
"@qwik-ui/headless": "0.6.7",
"@qwik.dev/core": "workspace:*",
"@qwik.dev/devtools": "0.2.1",
"@qwik.dev/partytown": "0.11.2",
"@qwik.dev/react": "workspace:*",
"@qwik.dev/router": "workspace:*",
"@rolldown/browser": "1.0.0-beta.43",
"@shikijs/colorized-brackets": "3.12.2",
"@shikijs/langs": "3.12.2",
"@shikijs/rehype": "3.12.2",
"@shikijs/themes": "3.12.2",
"@shikijs/transformers": "3.12.2",
"@shikijs/types": "3.12.2",
"@supabase/supabase-js": "2.53.0",
"@tailwindcss/vite": "4.1.12",
"@types/leaflet": "1.9.20",
"@types/prismjs": "1.26.5",
"@types/react": "19.1.13",
"@types/react-dom": "19.1.7",
"@unpic/core": "0.0.42",
"@unpic/qwik": "0.0.38",
"algoliasearch": "4.16.0",
"fflate": "0.8.2",
"gray-matter": "4.0.3",
"leaflet": "1.9.4",
"magic-string": "0.30.17",
"openai": "3.3.0",
"prettier": "3.6.2",
"prism-themes": "1.9.0",
"prismjs": "1.30.0",
"puppeteer": "22.13.1",
"qwik-image": "0.0.16",
"react": "19.1.1",
"react-dom": "19.1.1",
"shiki": "3.13.0",
"snarkdown": "2.0.0",
"tailwindcss": "4.1.14",
"terser": "5.44.0",
"tsm": "2.3.0",
"typescript": "5.9.3",
"valibot": "0.33.3",
"vite": "7.1.11",
"vite-tsconfig-paths": "5.1.4",
"wrangler": "3.65.1"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=8.6.12"
},
"homepage": "https://qwik.dev/",
"license": "MIT",
"private": true,
"scripts": {
"build": "pnpm build.repl-sw && qwik build",
"build.client": "vite build",
"build.preview": "NODE_OPTIONS=--max-old-space-size=8192 vite build --ssr src/entry.preview.tsx",
"build.repl-sw": "vite --config vite.config-repl-sw build",
"build.server": "NODE_OPTIONS=--max-old-space-size=8192 vite build -c adapters/cloudflare-pages/vite.config",
"build.showcase": "pnpm node scripts/showcase.js",
"codesandbox.sync": "tsx codesandbox.sync.ts",
"contributors": "tsx contributors.ts",
"deploy": "wrangler pages publish ./dist",
"dev": "tsx check-qwik-build.ts && vite --mode ssr --open",
"dev.debug": "node --inspect-brk ../../node_modules/vite/bin/vite.js --mode ssr --force",
"prebuild.core": "tsx check-qwik-build.ts",
"preview": "qwik build preview && vite preview --open",
"preview.only": "NODE_DEBUG=net,http node --inspect-brk ../../node_modules/vite/bin/vite.js preview",
"preview.wrangler": "wrangler pages dev ./dist --compatibility-flags=nodejs_als",
"start": "pnpm dev"
},
"type": "module"
}