-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "my-qwik-basic-starter",
"description": "Demo App with Routing built-in (recommended)",
"engines": {
"node": "20.x"
},
"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/vercel-edge/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "vercel deploy",
"dev": "vite --mode ssr",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/partytown": "^0.8.1",
"@builder.io/qwik": "^1.4.5",
"@builder.io/qwik-city": "^1.4.5",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.4",
"@types/compression": "^1.7.2",
"@types/eslint": "^8.56.2",
"@types/express": "^4.17.19",
"@types/node": "^20.11.6",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.4.14",
"compression": "^1.7.4",
"dotenv": "^16.3.2",
"eslint": "^8.56.0",
"eslint-plugin-qwik": "^1.4.5",
"postcss": "^8.4.31",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.4",
"shiki": "^1.2.0",
"supabase": "^1.204.3",
"tailwindcss": "3.3.3",
"typescript": "5.3.3",
"undici": "*",
"vercel": "^29.1.1",
"vite": "^5.0.12",
"vite-tsconfig-paths": "^4.2.1"
},
"dependencies": {
"@qwik-ui/headless": "^0.2.2",
"@qwikest/icons": "^0.0.13",
"marked": "^13.0.3",
"sanitize-html": "^2.13.0"
}
}