-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "my-qwik-basic-starter",
"description": "Demo App with Routing built-in (recommended)",
"engines": {
"node": ">=18.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/netlify-edge/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "netlify deploy --build",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"format": "prettier --write .",
"format.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"test": "vitest",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.3.1",
"@builder.io/qwik-city": "^1.3.1",
"@netlify/edge-functions": "^2.0.0",
"@types/eslint": "^8.44.8",
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-plugin-qwik": "^1.3.1",
"netlify-cli": "^15.0.0",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.2",
"undici": "^5.26.0",
"vercel": "^29.1.1",
"vite": "^5.0.6",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^1.1.0"
},
"dependencies": {
"@qwikest/icons": "^0.0.13",
"@supabase/supabase-js": "^2.39.2",
"sharp": "^0.33.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.6",
"@rollup/rollup-win32-x64-msvc": "4.9.6"
}
}