-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "luminescent-ui-docs",
"description": "Luminescent UI Documentation",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"trustedDependencies": [
"sharp"
],
"type": "module",
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/cloudflare-pages/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "wrangler pages dev ./dist",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview",
"start": "vite --mode ssr --host",
"start.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --forcenode --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.4.5",
"@builder.io/qwik-city": "^1.4.5",
"@luminescent/ui": "^0.3.5",
"@types/eslint": "^8.56.2",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-plugin-qwik": "^1.4.5",
"postcss": "^8.4.35",
"tailwindcss": "3.4.1",
"typescript": "5.3.3",
"undici": "^6.6.2",
"vite": "^5.1.3",
"vite-tsconfig-paths": "^4.3.1",
"wrangler": "^3.28.3"
}
}