-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
91 lines (91 loc) · 3.08 KB
/
package.json
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/partytown": "0.10.2",
"@builder.io/qwik": "../qwik",
"@builder.io/qwik-city": "../qwik-router",
"@builder.io/sdk-qwik": "0.14.31",
"@docsearch/css": "3.6.1",
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@modular-forms/qwik": "0.23.1",
"@mui/material": "5.16.4",
"@mui/system": "5.16.4",
"@mui/x-data-grid": "6.20.4",
"@qwik-ui/headless": "0.6.3",
"@qwik.dev/core": "workspace:*",
"@qwik.dev/react": "workspace:*",
"@qwik.dev/router": "workspace:*",
"@shikijs/colorized-brackets": "3.1.0",
"@shikijs/rehype": "3.1.0",
"@shikijs/transformers": "3.1.0",
"@shikijs/types": "3.1.0",
"@supabase/supabase-js": "2.44.4",
"@types/leaflet": "1.9.12",
"@types/prismjs": "1.26.4",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@unpic/core": "0.0.42",
"@unpic/qwik": "0.0.38",
"algoliasearch": "4.16.0",
"autoprefixer": "10.4.19",
"fflate": "0.8.2",
"gray-matter": "4.0.3",
"leaflet": "1.9.4",
"magic-string": "0.30.11",
"openai": "3.3.0",
"postcss": "8.4.39",
"prettier": "3.4.2",
"prism-themes": "1.9.0",
"prismjs": "1.29.0",
"puppeteer": "22.13.1",
"qwik-image": "0.0.16",
"react": "18.3.1",
"react-dom": "18.3.1",
"shiki": "3.1.0",
"snarkdown": "2.0.0",
"tailwindcss": "3.4.6",
"terser": "5.37.0",
"tsm": "2.3.0",
"typescript": "5.8.2",
"undici": "*",
"valibot": "0.33.3",
"vite": "5.4.10",
"vite-plugin-inspect": "0.8.5",
"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"
}