-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.62 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
{
"name": "burgersonfleek",
"description": "Website for Burgers on Fleek",
"engines": {
"node": ">=23.0.0"
},
"private": true,
"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",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"lint": "eslint src/**/*.ts*",
"preview": "qwik build preview && vite preview --open",
"serve": "echo 'Run \"npm run qwik add\" to install a server adaptor'",
"start": "vite --open --mode ssr --host",
"qwik": "qwik"
},
"devDependencies": {
"@anuragroy/tailwindcss-animate": "^1.0.6",
"@builder.io/qwik": "1.11.0",
"@builder.io/qwik-city": "1.11.0",
"@luminescent/ui": "^1.3.1",
"@luminescent/ui-qwik": "^1.3.1",
"@types/eslint": "8.56.10",
"@types/node": "latest",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-plugin-qwik": "1.11.0",
"lucide-qwik": "^1.0.0",
"node-fetch": "3.3.2",
"postcss": "8.4.49",
"qwik-ionicons": "1.0.5",
"tailwindcss": "3.4.16",
"typescript": "5.7.2",
"undici": "7.1.0",
"uuid": "^11.0.3",
"vite": "5.1.8",
"vite-tsconfig-paths": "4.3.2",
"wrangler": "latest",
"zod": "^3.23.8"
},
"packageManager": "[email protected]"
}